diff options
| author | Alexander Viro <viro@www.linux.org.uk> | 2004-07-26 07:04:36 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-07-26 07:04:36 -0700 |
| commit | c3392187dccc028e8641b82ff171bce28a570735 (patch) | |
| tree | a614d981441d4d3c766e747ab133e2c0192cdcb1 /drivers/input | |
| parent | 21bb55ac9e0f5ec5fd2915ba727c235031a7059f (diff) | |
[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: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/input')
| -rw-r--r-- | drivers/input/keyboard/sunkbd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/input/keyboard/sunkbd.c b/drivers/input/keyboard/sunkbd.c index 1bb8a57e28dc..c281e726b6bb 100644 --- a/drivers/input/keyboard/sunkbd.c +++ b/drivers/input/keyboard/sunkbd.c @@ -81,8 +81,8 @@ struct sunkbd { char name[64]; char phys[32]; char type; - volatile char reset; - volatile char layout; + volatile s8 reset; + volatile s8 layout; }; /* |
