diff options
| author | Andrew Morton <akpm@osdl.org> | 2005-09-16 22:28:10 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-17 14:50:02 -0400 |
| commit | f647e08a55d2c88c4e7ab17a0a8e3fcf568fbc65 (patch) | |
| tree | 91a4fb86ee819aaa1843d83d86ef6b72d31839b7 | |
| parent | a464adeb7e8f1cd65ca911e20a7c02e452dc2c17 (diff) | |
[PATCH] joystick-vs-x.org fix
Fix http://bugzilla.kernel.org/show_bug.cgi?id=5241
2.6.13 broke compilation of the xorg tree, which apprarently insists on
including that file.
Cc: Vojtech Pavlik <vojtech@suse.cz>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
| -rw-r--r-- | include/linux/joystick.h | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/include/linux/joystick.h b/include/linux/joystick.h index 06b9af77eb7f..5fd20ddd7ae3 100644 --- a/include/linux/joystick.h +++ b/include/linux/joystick.h | |||
| @@ -111,29 +111,30 @@ struct js_corr { | |||
| 111 | #define JS_SET_ALL 8 | 111 | #define JS_SET_ALL 8 |
| 112 | 112 | ||
| 113 | struct JS_DATA_TYPE { | 113 | struct JS_DATA_TYPE { |
| 114 | __s32 buttons; | 114 | int32_t buttons; |
| 115 | __s32 x; | 115 | int32_t x; |
| 116 | __s32 y; | 116 | int32_t y; |
| 117 | }; | 117 | }; |
| 118 | 118 | ||
| 119 | struct JS_DATA_SAVE_TYPE_32 { | 119 | struct JS_DATA_SAVE_TYPE_32 { |
| 120 | __s32 JS_TIMEOUT; | 120 | int32_t JS_TIMEOUT; |
| 121 | __s32 BUSY; | 121 | int32_t BUSY; |
| 122 | __s32 JS_EXPIRETIME; | 122 | int32_t JS_EXPIRETIME; |
| 123 | __s32 JS_TIMELIMIT; | 123 | int32_t JS_TIMELIMIT; |
| 124 | struct JS_DATA_TYPE JS_SAVE; | 124 | struct JS_DATA_TYPE JS_SAVE; |
| 125 | struct JS_DATA_TYPE JS_CORR; | 125 | struct JS_DATA_TYPE JS_CORR; |
| 126 | }; | 126 | }; |
| 127 | 127 | ||
| 128 | struct JS_DATA_SAVE_TYPE_64 { | 128 | struct JS_DATA_SAVE_TYPE_64 { |
| 129 | __s32 JS_TIMEOUT; | 129 | int32_t JS_TIMEOUT; |
| 130 | __s32 BUSY; | 130 | int32_t BUSY; |
| 131 | __s64 JS_EXPIRETIME; | 131 | int64_t JS_EXPIRETIME; |
| 132 | __s64 JS_TIMELIMIT; | 132 | int64_t JS_TIMELIMIT; |
| 133 | struct JS_DATA_TYPE JS_SAVE; | 133 | struct JS_DATA_TYPE JS_SAVE; |
| 134 | struct JS_DATA_TYPE JS_CORR; | 134 | struct JS_DATA_TYPE JS_CORR; |
| 135 | }; | 135 | }; |
| 136 | 136 | ||
| 137 | #ifdef __KERNEL__ | ||
| 137 | #if BITS_PER_LONG == 64 | 138 | #if BITS_PER_LONG == 64 |
| 138 | #define JS_DATA_SAVE_TYPE JS_DATA_SAVE_TYPE_64 | 139 | #define JS_DATA_SAVE_TYPE JS_DATA_SAVE_TYPE_64 |
| 139 | #elif BITS_PER_LONG == 32 | 140 | #elif BITS_PER_LONG == 32 |
| @@ -141,5 +142,6 @@ struct JS_DATA_SAVE_TYPE_64 { | |||
| 141 | #else | 142 | #else |
| 142 | #error Unexpected BITS_PER_LONG | 143 | #error Unexpected BITS_PER_LONG |
| 143 | #endif | 144 | #endif |
| 145 | #endif | ||
| 144 | 146 | ||
| 145 | #endif /* _LINUX_JOYSTICK_H */ | 147 | #endif /* _LINUX_JOYSTICK_H */ |
