diff options
| author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-10 11:30:29 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-10 11:30:29 -0500 |
| commit | 115b2ce1c3b974e43e45fa6c9e20cd7271a01dff (patch) | |
| tree | 9a883fb4d84713f142c4e003fead92381c11b6c2 /drivers/input/misc | |
| parent | dd49f96777d5a72d5591ac2112d4ac940391774e (diff) | |
| parent | 5fc4e6e197c7e377f1c8ebec727d40df983aceed (diff) | |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
Diffstat (limited to 'drivers/input/misc')
| -rw-r--r-- | drivers/input/misc/wistron_btns.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/misc/wistron_btns.c b/drivers/input/misc/wistron_btns.c index a05b8557842f..4b415d9b0123 100644 --- a/drivers/input/misc/wistron_btns.c +++ b/drivers/input/misc/wistron_btns.c | |||
| @@ -92,11 +92,11 @@ static void call_bios(struct regs *regs) | |||
| 92 | preempt_enable(); | 92 | preempt_enable(); |
| 93 | } | 93 | } |
| 94 | 94 | ||
| 95 | static size_t __init locate_wistron_bios(void __iomem *base) | 95 | static ssize_t __init locate_wistron_bios(void __iomem *base) |
| 96 | { | 96 | { |
| 97 | static const unsigned char __initdata signature[] = | 97 | static const unsigned char __initdata signature[] = |
| 98 | { 0x42, 0x21, 0x55, 0x30 }; | 98 | { 0x42, 0x21, 0x55, 0x30 }; |
| 99 | size_t offset; | 99 | ssize_t offset; |
| 100 | 100 | ||
| 101 | for (offset = 0; offset < 0x10000; offset += 0x10) { | 101 | for (offset = 0; offset < 0x10000; offset += 0x10) { |
| 102 | if (check_signature(base + offset, signature, | 102 | if (check_signature(base + offset, signature, |
| @@ -109,7 +109,7 @@ static size_t __init locate_wistron_bios(void __iomem *base) | |||
| 109 | static int __init map_bios(void) | 109 | static int __init map_bios(void) |
| 110 | { | 110 | { |
| 111 | void __iomem *base; | 111 | void __iomem *base; |
| 112 | size_t offset; | 112 | ssize_t offset; |
| 113 | u32 entry_point; | 113 | u32 entry_point; |
| 114 | 114 | ||
| 115 | base = ioremap(0xF0000, 0x10000); /* Can't fail */ | 115 | base = ioremap(0xF0000, 0x10000); /* Can't fail */ |
