diff options
Diffstat (limited to 'drivers/input/serio/i8042-io.h')
-rw-r--r-- | drivers/input/serio/i8042-io.h | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/drivers/input/serio/i8042-io.h b/drivers/input/serio/i8042-io.h index cc21914fbc72..3b4e13b9ce1b 100644 --- a/drivers/input/serio/i8042-io.h +++ b/drivers/input/serio/i8042-io.h | |||
@@ -67,25 +67,22 @@ static inline int i8042_platform_init(void) | |||
67 | * On some platforms touching the i8042 data register region can do really | 67 | * On some platforms touching the i8042 data register region can do really |
68 | * bad things. Because of this the region is always reserved on such boxes. | 68 | * bad things. Because of this the region is always reserved on such boxes. |
69 | */ | 69 | */ |
70 | #if !defined(__sh__) && !defined(__alpha__) && !defined(__mips__) && !defined(CONFIG_PPC_MERGE) | ||
71 | if (!request_region(I8042_DATA_REG, 16, "i8042")) | ||
72 | return -EBUSY; | ||
73 | #endif | ||
74 | |||
75 | i8042_reset = 1; | ||
76 | |||
77 | #if defined(CONFIG_PPC_MERGE) | 70 | #if defined(CONFIG_PPC_MERGE) |
78 | if (check_legacy_ioport(I8042_DATA_REG)) | 71 | if (check_legacy_ioport(I8042_DATA_REG)) |
79 | return -EBUSY; | 72 | return -ENODEV; |
73 | #endif | ||
74 | #if !defined(__sh__) && !defined(__alpha__) && !defined(__mips__) | ||
80 | if (!request_region(I8042_DATA_REG, 16, "i8042")) | 75 | if (!request_region(I8042_DATA_REG, 16, "i8042")) |
81 | return -EBUSY; | 76 | return -EBUSY; |
82 | #endif | 77 | #endif |
78 | |||
79 | i8042_reset = 1; | ||
83 | return 0; | 80 | return 0; |
84 | } | 81 | } |
85 | 82 | ||
86 | static inline void i8042_platform_exit(void) | 83 | static inline void i8042_platform_exit(void) |
87 | { | 84 | { |
88 | #if !defined(__sh__) && !defined(__alpha__) && !defined(CONFIG_PPC64) | 85 | #if !defined(__sh__) && !defined(__alpha__) |
89 | release_region(I8042_DATA_REG, 16); | 86 | release_region(I8042_DATA_REG, 16); |
90 | #endif | 87 | #endif |
91 | } | 88 | } |