Commit c3392187 authored by Alexander Viro's avatar Alexander Viro Committed by Linus Torvalds

[PATCH] signed char fixes in drivers/*

	a couple of "replace char with explicit s8 to make sure it's really
signed" fixes.
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 21bb55ac
...@@ -81,8 +81,8 @@ struct sunkbd { ...@@ -81,8 +81,8 @@ struct sunkbd {
char name[64]; char name[64];
char phys[32]; char phys[32];
char type; char type;
volatile char reset; volatile s8 reset;
volatile char layout; volatile s8 layout;
}; };
/* /*
......
...@@ -1432,7 +1432,7 @@ isdn_ciscohdlck_dev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) ...@@ -1432,7 +1432,7 @@ isdn_ciscohdlck_dev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
unsigned long expires = 0; unsigned long expires = 0;
int tmp = 0; int tmp = 0;
int period = lp->cisco_keepalive_period; int period = lp->cisco_keepalive_period;
char debserint = lp->cisco_debserint; s8 debserint = lp->cisco_debserint;
int rc = 0; int rc = 0;
if (lp->p_encap != ISDN_NET_ENCAP_CISCOHDLCK) if (lp->p_encap != ISDN_NET_ENCAP_CISCOHDLCK)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment