diff options
author | Ondrej Zary <linux@rainbow-software.org> | 2007-06-12 00:33:13 -0400 |
---|---|---|
committer | Dmitry Torokhov <dtor@insightbb.com> | 2007-06-12 00:33:13 -0400 |
commit | c6f8d7066d18ac86ff88627d858b749d9ba168bc (patch) | |
tree | bbf65c278058f46a6c61f37895d7b06f0b06e0ff /drivers/input | |
parent | 1dfa2812404c37d7571622195f907cea3331616c (diff) |
Input: usbtouchscreen - fix fallout caused by move from drivers/usb
During the move from drivers/usb/input into drivers/input/touchscreen
Kconfig variables were shuffled a bit to use a new namespace
(CONFIG_TOUCHSCREEN) while usbtouchscreen was still using old ones.
Also noticed by Robert P. J. Day <rpjday@mindspring.com>
Signed-off-by: Ondrej Zary <linux@rainbow-software.org>
Signed-off-by: Daniel Ritz <daniel.ritz@gmx.ch>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/touchscreen/usbtouchscreen.c | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/drivers/input/touchscreen/usbtouchscreen.c b/drivers/input/touchscreen/usbtouchscreen.c index 8e18e6c64777..e3f22852bd09 100644 --- a/drivers/input/touchscreen/usbtouchscreen.c +++ b/drivers/input/touchscreen/usbtouchscreen.c | |||
@@ -91,7 +91,7 @@ struct usbtouch_usb { | |||
91 | }; | 91 | }; |
92 | 92 | ||
93 | 93 | ||
94 | #if defined(CONFIG_USB_TOUCHSCREEN_EGALAX) || defined(CONFIG_USB_TOUCHSCREEN_ETURBO) | 94 | #if defined(CONFIG_TOUCHSCREEN_USB_EGALAX) || defined(CONFIG_TOUCHSCREEN_USB_ETURBO) |
95 | #define MULTI_PACKET | 95 | #define MULTI_PACKET |
96 | #endif | 96 | #endif |
97 | 97 | ||
@@ -113,7 +113,7 @@ enum { | |||
113 | }; | 113 | }; |
114 | 114 | ||
115 | static struct usb_device_id usbtouch_devices[] = { | 115 | static struct usb_device_id usbtouch_devices[] = { |
116 | #ifdef CONFIG_USB_TOUCHSCREEN_EGALAX | 116 | #ifdef CONFIG_TOUCHSCREEN_USB_EGALAX |
117 | {USB_DEVICE(0x3823, 0x0001), .driver_info = DEVTYPE_EGALAX}, | 117 | {USB_DEVICE(0x3823, 0x0001), .driver_info = DEVTYPE_EGALAX}, |
118 | {USB_DEVICE(0x3823, 0x0002), .driver_info = DEVTYPE_EGALAX}, | 118 | {USB_DEVICE(0x3823, 0x0002), .driver_info = DEVTYPE_EGALAX}, |
119 | {USB_DEVICE(0x0123, 0x0001), .driver_info = DEVTYPE_EGALAX}, | 119 | {USB_DEVICE(0x0123, 0x0001), .driver_info = DEVTYPE_EGALAX}, |
@@ -123,30 +123,30 @@ static struct usb_device_id usbtouch_devices[] = { | |||
123 | {USB_DEVICE(0x1234, 0x0002), .driver_info = DEVTYPE_EGALAX}, | 123 | {USB_DEVICE(0x1234, 0x0002), .driver_info = DEVTYPE_EGALAX}, |
124 | #endif | 124 | #endif |
125 | 125 | ||
126 | #ifdef CONFIG_USB_TOUCHSCREEN_PANJIT | 126 | #ifdef CONFIG_TOUCHSCREEN_USB_PANJIT |
127 | {USB_DEVICE(0x134c, 0x0001), .driver_info = DEVTYPE_PANJIT}, | 127 | {USB_DEVICE(0x134c, 0x0001), .driver_info = DEVTYPE_PANJIT}, |
128 | {USB_DEVICE(0x134c, 0x0002), .driver_info = DEVTYPE_PANJIT}, | 128 | {USB_DEVICE(0x134c, 0x0002), .driver_info = DEVTYPE_PANJIT}, |
129 | {USB_DEVICE(0x134c, 0x0003), .driver_info = DEVTYPE_PANJIT}, | 129 | {USB_DEVICE(0x134c, 0x0003), .driver_info = DEVTYPE_PANJIT}, |
130 | {USB_DEVICE(0x134c, 0x0004), .driver_info = DEVTYPE_PANJIT}, | 130 | {USB_DEVICE(0x134c, 0x0004), .driver_info = DEVTYPE_PANJIT}, |
131 | #endif | 131 | #endif |
132 | 132 | ||
133 | #ifdef CONFIG_USB_TOUCHSCREEN_3M | 133 | #ifdef CONFIG_TOUCHSCREEN_USB_3M |
134 | {USB_DEVICE(0x0596, 0x0001), .driver_info = DEVTYPE_3M}, | 134 | {USB_DEVICE(0x0596, 0x0001), .driver_info = DEVTYPE_3M}, |
135 | #endif | 135 | #endif |
136 | 136 | ||
137 | #ifdef CONFIG_USB_TOUCHSCREEN_ITM | 137 | #ifdef CONFIG_TOUCHSCREEN_USB_ITM |
138 | {USB_DEVICE(0x0403, 0xf9e9), .driver_info = DEVTYPE_ITM}, | 138 | {USB_DEVICE(0x0403, 0xf9e9), .driver_info = DEVTYPE_ITM}, |
139 | #endif | 139 | #endif |
140 | 140 | ||
141 | #ifdef CONFIG_USB_TOUCHSCREEN_ETURBO | 141 | #ifdef CONFIG_TOUCHSCREEN_USB_ETURBO |
142 | {USB_DEVICE(0x1234, 0x5678), .driver_info = DEVTYPE_ETURBO}, | 142 | {USB_DEVICE(0x1234, 0x5678), .driver_info = DEVTYPE_ETURBO}, |
143 | #endif | 143 | #endif |
144 | 144 | ||
145 | #ifdef CONFIG_USB_TOUCHSCREEN_GUNZE | 145 | #ifdef CONFIG_TOUCHSCREEN_USB_GUNZE |
146 | {USB_DEVICE(0x0637, 0x0001), .driver_info = DEVTYPE_GUNZE}, | 146 | {USB_DEVICE(0x0637, 0x0001), .driver_info = DEVTYPE_GUNZE}, |
147 | #endif | 147 | #endif |
148 | 148 | ||
149 | #ifdef CONFIG_USB_TOUCHSCREEN_DMC_TSC10 | 149 | #ifdef CONFIG_TOUCHSCREEN_USB_DMC_TSC10 |
150 | {USB_DEVICE(0x0afa, 0x03e8), .driver_info = DEVTYPE_DMC_TSC10}, | 150 | {USB_DEVICE(0x0afa, 0x03e8), .driver_info = DEVTYPE_DMC_TSC10}, |
151 | #endif | 151 | #endif |
152 | 152 | ||
@@ -158,7 +158,7 @@ static struct usb_device_id usbtouch_devices[] = { | |||
158 | * eGalax part | 158 | * eGalax part |
159 | */ | 159 | */ |
160 | 160 | ||
161 | #ifdef CONFIG_USB_TOUCHSCREEN_EGALAX | 161 | #ifdef CONFIG_TOUCHSCREEN_USB_EGALAX |
162 | 162 | ||
163 | #define EGALAX_PKT_TYPE_MASK 0xFE | 163 | #define EGALAX_PKT_TYPE_MASK 0xFE |
164 | #define EGALAX_PKT_TYPE_REPT 0x80 | 164 | #define EGALAX_PKT_TYPE_REPT 0x80 |
@@ -197,7 +197,7 @@ static int egalax_get_pkt_len(unsigned char *buf, int len) | |||
197 | /***************************************************************************** | 197 | /***************************************************************************** |
198 | * PanJit Part | 198 | * PanJit Part |
199 | */ | 199 | */ |
200 | #ifdef CONFIG_USB_TOUCHSCREEN_PANJIT | 200 | #ifdef CONFIG_TOUCHSCREEN_USB_PANJIT |
201 | static int panjit_read_data(struct usbtouch_usb *dev, unsigned char *pkt) | 201 | static int panjit_read_data(struct usbtouch_usb *dev, unsigned char *pkt) |
202 | { | 202 | { |
203 | dev->x = ((pkt[2] & 0x0F) << 8) | pkt[1]; | 203 | dev->x = ((pkt[2] & 0x0F) << 8) | pkt[1]; |
@@ -212,7 +212,7 @@ static int panjit_read_data(struct usbtouch_usb *dev, unsigned char *pkt) | |||
212 | /***************************************************************************** | 212 | /***************************************************************************** |
213 | * 3M/Microtouch Part | 213 | * 3M/Microtouch Part |
214 | */ | 214 | */ |
215 | #ifdef CONFIG_USB_TOUCHSCREEN_3M | 215 | #ifdef CONFIG_TOUCHSCREEN_USB_3M |
216 | 216 | ||
217 | #define MTOUCHUSB_ASYNC_REPORT 1 | 217 | #define MTOUCHUSB_ASYNC_REPORT 1 |
218 | #define MTOUCHUSB_RESET 7 | 218 | #define MTOUCHUSB_RESET 7 |
@@ -262,7 +262,7 @@ static int mtouch_init(struct usbtouch_usb *usbtouch) | |||
262 | /***************************************************************************** | 262 | /***************************************************************************** |
263 | * ITM Part | 263 | * ITM Part |
264 | */ | 264 | */ |
265 | #ifdef CONFIG_USB_TOUCHSCREEN_ITM | 265 | #ifdef CONFIG_TOUCHSCREEN_USB_ITM |
266 | static int itm_read_data(struct usbtouch_usb *dev, unsigned char *pkt) | 266 | static int itm_read_data(struct usbtouch_usb *dev, unsigned char *pkt) |
267 | { | 267 | { |
268 | int touch; | 268 | int touch; |
@@ -296,7 +296,7 @@ static int itm_read_data(struct usbtouch_usb *dev, unsigned char *pkt) | |||
296 | /***************************************************************************** | 296 | /***************************************************************************** |
297 | * eTurboTouch part | 297 | * eTurboTouch part |
298 | */ | 298 | */ |
299 | #ifdef CONFIG_USB_TOUCHSCREEN_ETURBO | 299 | #ifdef CONFIG_TOUCHSCREEN_USB_ETURBO |
300 | static int eturbo_read_data(struct usbtouch_usb *dev, unsigned char *pkt) | 300 | static int eturbo_read_data(struct usbtouch_usb *dev, unsigned char *pkt) |
301 | { | 301 | { |
302 | unsigned int shift; | 302 | unsigned int shift; |
@@ -327,7 +327,7 @@ static int eturbo_get_pkt_len(unsigned char *buf, int len) | |||
327 | /***************************************************************************** | 327 | /***************************************************************************** |
328 | * Gunze part | 328 | * Gunze part |
329 | */ | 329 | */ |
330 | #ifdef CONFIG_USB_TOUCHSCREEN_GUNZE | 330 | #ifdef CONFIG_TOUCHSCREEN_USB_GUNZE |
331 | static int gunze_read_data(struct usbtouch_usb *dev, unsigned char *pkt) | 331 | static int gunze_read_data(struct usbtouch_usb *dev, unsigned char *pkt) |
332 | { | 332 | { |
333 | if (!(pkt[0] & 0x80) || ((pkt[1] | pkt[2] | pkt[3]) & 0x80)) | 333 | if (!(pkt[0] & 0x80) || ((pkt[1] | pkt[2] | pkt[3]) & 0x80)) |
@@ -348,7 +348,7 @@ static int gunze_read_data(struct usbtouch_usb *dev, unsigned char *pkt) | |||
348 | * http://www.dmccoltd.com/files/controler/tsc10usb_pi_e.pdf | 348 | * http://www.dmccoltd.com/files/controler/tsc10usb_pi_e.pdf |
349 | * http://www.dmccoltd.com/files/controler/tsc25_usb_e.pdf | 349 | * http://www.dmccoltd.com/files/controler/tsc25_usb_e.pdf |
350 | */ | 350 | */ |
351 | #ifdef CONFIG_USB_TOUCHSCREEN_DMC_TSC10 | 351 | #ifdef CONFIG_TOUCHSCREEN_USB_DMC_TSC10 |
352 | 352 | ||
353 | /* supported data rates. currently using 130 */ | 353 | /* supported data rates. currently using 130 */ |
354 | #define TSC10_RATE_POINT 0x50 | 354 | #define TSC10_RATE_POINT 0x50 |
@@ -419,7 +419,7 @@ static int dmc_tsc10_read_data(struct usbtouch_usb *dev, unsigned char *pkt) | |||
419 | * the different device descriptors | 419 | * the different device descriptors |
420 | */ | 420 | */ |
421 | static struct usbtouch_device_info usbtouch_dev_info[] = { | 421 | static struct usbtouch_device_info usbtouch_dev_info[] = { |
422 | #ifdef CONFIG_USB_TOUCHSCREEN_EGALAX | 422 | #ifdef CONFIG_TOUCHSCREEN_USB_EGALAX |
423 | [DEVTYPE_EGALAX] = { | 423 | [DEVTYPE_EGALAX] = { |
424 | .min_xc = 0x0, | 424 | .min_xc = 0x0, |
425 | .max_xc = 0x07ff, | 425 | .max_xc = 0x07ff, |
@@ -433,7 +433,7 @@ static struct usbtouch_device_info usbtouch_dev_info[] = { | |||
433 | }, | 433 | }, |
434 | #endif | 434 | #endif |
435 | 435 | ||
436 | #ifdef CONFIG_USB_TOUCHSCREEN_PANJIT | 436 | #ifdef CONFIG_TOUCHSCREEN_USB_PANJIT |
437 | [DEVTYPE_PANJIT] = { | 437 | [DEVTYPE_PANJIT] = { |
438 | .min_xc = 0x0, | 438 | .min_xc = 0x0, |
439 | .max_xc = 0x0fff, | 439 | .max_xc = 0x0fff, |
@@ -444,7 +444,7 @@ static struct usbtouch_device_info usbtouch_dev_info[] = { | |||
444 | }, | 444 | }, |
445 | #endif | 445 | #endif |
446 | 446 | ||
447 | #ifdef CONFIG_USB_TOUCHSCREEN_3M | 447 | #ifdef CONFIG_TOUCHSCREEN_USB_3M |
448 | [DEVTYPE_3M] = { | 448 | [DEVTYPE_3M] = { |
449 | .min_xc = 0x0, | 449 | .min_xc = 0x0, |
450 | .max_xc = 0x4000, | 450 | .max_xc = 0x4000, |
@@ -456,7 +456,7 @@ static struct usbtouch_device_info usbtouch_dev_info[] = { | |||
456 | }, | 456 | }, |
457 | #endif | 457 | #endif |
458 | 458 | ||
459 | #ifdef CONFIG_USB_TOUCHSCREEN_ITM | 459 | #ifdef CONFIG_TOUCHSCREEN_USB_ITM |
460 | [DEVTYPE_ITM] = { | 460 | [DEVTYPE_ITM] = { |
461 | .min_xc = 0x0, | 461 | .min_xc = 0x0, |
462 | .max_xc = 0x0fff, | 462 | .max_xc = 0x0fff, |
@@ -468,7 +468,7 @@ static struct usbtouch_device_info usbtouch_dev_info[] = { | |||
468 | }, | 468 | }, |
469 | #endif | 469 | #endif |
470 | 470 | ||
471 | #ifdef CONFIG_USB_TOUCHSCREEN_ETURBO | 471 | #ifdef CONFIG_TOUCHSCREEN_USB_ETURBO |
472 | [DEVTYPE_ETURBO] = { | 472 | [DEVTYPE_ETURBO] = { |
473 | .min_xc = 0x0, | 473 | .min_xc = 0x0, |
474 | .max_xc = 0x07ff, | 474 | .max_xc = 0x07ff, |
@@ -482,7 +482,7 @@ static struct usbtouch_device_info usbtouch_dev_info[] = { | |||
482 | }, | 482 | }, |
483 | #endif | 483 | #endif |
484 | 484 | ||
485 | #ifdef CONFIG_USB_TOUCHSCREEN_GUNZE | 485 | #ifdef CONFIG_TOUCHSCREEN_USB_GUNZE |
486 | [DEVTYPE_GUNZE] = { | 486 | [DEVTYPE_GUNZE] = { |
487 | .min_xc = 0x0, | 487 | .min_xc = 0x0, |
488 | .max_xc = 0x0fff, | 488 | .max_xc = 0x0fff, |
@@ -493,7 +493,7 @@ static struct usbtouch_device_info usbtouch_dev_info[] = { | |||
493 | }, | 493 | }, |
494 | #endif | 494 | #endif |
495 | 495 | ||
496 | #ifdef CONFIG_USB_TOUCHSCREEN_DMC_TSC10 | 496 | #ifdef CONFIG_TOUCHSCREEN_USB_DMC_TSC10 |
497 | [DEVTYPE_DMC_TSC10] = { | 497 | [DEVTYPE_DMC_TSC10] = { |
498 | .min_xc = 0x0, | 498 | .min_xc = 0x0, |
499 | .max_xc = 0x03ff, | 499 | .max_xc = 0x03ff, |