blob: a378e959368e1df87266524cf919074a97c1ce6f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Input core configuration
3#
4menuconfig INPUT_KEYBOARD
5 bool "Keyboards" if EMBEDDED || !X86
6 default y
7 help
8 Say Y here, and a list of supported keyboards will be displayed.
9 This option doesn't affect the kernel.
10
11 If unsure, say Y.
12
13if INPUT_KEYBOARD
14
Dmitry Torokhovcb589522009-06-29 00:00:52 -070015config KEYBOARD_AAED2000
16 tristate "AAED-2000 keyboard"
17 depends on MACH_AAED2000
18 select INPUT_POLLDEV
19 default y
20 help
21 Say Y here to enable the keyboard on the Agilent AAED-2000
22 development board.
23
24 To compile this driver as a module, choose M here: the
25 module will be called aaed2000_kbd.
26
Michael Hennerichfba65fe2009-10-10 13:54:02 -040027config KEYBOARD_ADP5520
28 tristate "Keypad Support for ADP5520 PMIC"
29 depends on PMIC_ADP5520
30 help
31 This option enables support for the keypad scan matrix
32 on Analog Devices ADP5520 PMICs.
33
34 To compile this driver as a module, choose M here: the module will
35 be called adp5520-keys.
36
Michael Hennerich88751dd2009-09-17 22:39:38 -070037config KEYBOARD_ADP5588
Michael Hennerich5a9003d2010-01-19 00:28:44 -080038 tristate "ADP5588/87 I2C QWERTY Keypad and IO Expander"
Michael Hennerich88751dd2009-09-17 22:39:38 -070039 depends on I2C
40 help
Michael Hennerich5a9003d2010-01-19 00:28:44 -080041 Say Y here if you want to use a ADP5588/87 attached to your
Michael Hennerich88751dd2009-09-17 22:39:38 -070042 system I2C bus.
43
44 To compile this driver as a module, choose M here: the
45 module will be called adp5588-keys.
46
Dmitry Torokhovcb589522009-06-29 00:00:52 -070047config KEYBOARD_AMIGA
48 tristate "Amiga keyboard"
49 depends on AMIGA
50 help
51 Say Y here if you are running Linux on any AMIGA and have a keyboard
52 attached.
53
54 To compile this driver as a module, choose M here: the
55 module will be called amikbd.
56
57config ATARI_KBD_CORE
58 bool
59
60config KEYBOARD_ATARI
61 tristate "Atari keyboard"
62 depends on ATARI
63 select ATARI_KBD_CORE
64 help
65 Say Y here if you are running Linux on any Atari and have a keyboard
66 attached.
67
68 To compile this driver as a module, choose M here: the
69 module will be called atakbd.
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071config KEYBOARD_ATKBD
Feng Tangc9d46f62010-07-05 23:03:21 +080072 tristate "AT keyboard" if EMBEDDED || !X86
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 default y
74 select SERIO
75 select SERIO_LIBPS2
Feng Tang44631ac2010-07-05 23:03:20 +080076 select SERIO_I8042 if X86
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 select SERIO_GSCPS2 if GSC
78 help
79 Say Y here if you want to use a standard AT or PS/2 keyboard. Usually
80 you'll need this, unless you have a different type keyboard (USB, ADB
81 or other). This also works for AT and PS/2 keyboards connected over a
82 PS/2 to serial converter.
83
84 If unsure, say Y.
85
86 To compile this driver as a module, choose M here: the
87 module will be called atkbd.
88
89config KEYBOARD_ATKBD_HP_KEYCODES
90 bool "Use HP keyboard scancodes"
91 depends on PARISC && KEYBOARD_ATKBD
92 default y
93 help
94 Say Y here if you have a PA-RISC machine and want to use an AT or
95 PS/2 keyboard, and your keyboard uses keycodes that are specific to
96 PA-RISC keyboards.
97
98 Say N if you use a standard keyboard.
99
100config KEYBOARD_ATKBD_RDI_KEYCODES
101 bool "Use PrecisionBook keyboard scancodes"
102 depends on KEYBOARD_ATKBD_HP_KEYCODES
103 default n
104 help
105 If you have an RDI PrecisionBook, say Y here if you want to use its
106 built-in keyboard (as opposed to an external keyboard).
107
108 The PrecisionBook has five keys that conflict with those used by most
109 AT and PS/2 keyboards. These are as follows:
110
111 PrecisionBook Standard AT or PS/2
112
113 F1 F12
114 Left Ctrl Left Alt
115 Caps Lock Left Ctrl
116 Right Ctrl Caps Lock
117 Left 102nd key (the key to the right of Left Shift)
118
119 If you say N here, and use the PrecisionBook keyboard, then each key
120 in the left-hand column will be interpreted as the corresponding key
121 in the right-hand column.
122
123 If you say Y here, and use an external keyboard, then each key in the
124 right-hand column will be interpreted as the key shown in the
125 left-hand column.
126
Christoph Fritzd90d8d52010-07-17 14:29:06 -0700127config KEYBOARD_QT2160
Raphael Derosso Pereirafde11322009-09-21 22:24:06 -0700128 tristate "Atmel AT42QT2160 Touch Sensor Chip"
129 depends on I2C && EXPERIMENTAL
130 help
131 If you say yes here you get support for Atmel AT42QT2160 Touch
132 Sensor chip as a keyboard input.
133
134 This driver can also be built as a module. If so, the module
135 will be called qt2160.
136
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700137config KEYBOARD_BFIN
138 tristate "Blackfin BF54x keypad support"
139 depends on (BF54x && !BF544)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 help
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700141 Say Y here if you want to use the BF54x keypad.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 To compile this driver as a module, choose M here: the
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700144 module will be called bf54x-keys.
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146config KEYBOARD_LKKBD
147 tristate "DECstation/VAXstation LK201/LK401 keyboard"
148 select SERIO
149 help
150 Say Y here if you want to use a LK201 or LK401 style serial
151 keyboard. This keyboard is also useable on PCs if you attach
152 it with the inputattach program. The connector pinout is
153 described within lkkbd.c.
154
155 To compile this driver as a module, choose M here: the
156 module will be called lkkbd.
157
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700158config KEYBOARD_EP93XX
159 tristate "EP93xx Matrix Keypad support"
160 depends on ARCH_EP93XX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 help
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700162 Say Y here to enable the matrix keypad on the Cirrus EP93XX.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 To compile this driver as a module, choose M here: the
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700165 module will be called ep93xx_keypad.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700167config KEYBOARD_GPIO
168 tristate "GPIO Buttons"
169 depends on GENERIC_GPIO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 help
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700171 This driver implements support for buttons connected
172 to GPIO pins of various CPUs (and some other chips).
173
174 Say Y here if your device has buttons connected
175 directly to such GPIO pins. Your board-specific
176 setup logic must also provide a platform device,
177 with configuration data saying which GPIOs are used.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 To compile this driver as a module, choose M here: the
Eric Miaobab76142009-06-29 00:20:52 -0700180 module will be called gpio_keys.
181
Sriramakrishnan Govindarajan30ba3ea2010-05-03 23:47:12 -0700182config KEYBOARD_TCA6416
Tony SIMb8a3d6b2010-12-07 02:54:00 -0800183 tristate "TCA6416/TCA6408A Keypad Support"
Sriramakrishnan Govindarajan30ba3ea2010-05-03 23:47:12 -0700184 depends on I2C
185 help
186 This driver implements basic keypad functionality
Tony SIMb8a3d6b2010-12-07 02:54:00 -0800187 for keys connected through TCA6416/TCA6408A IO expanders.
Sriramakrishnan Govindarajan30ba3ea2010-05-03 23:47:12 -0700188
189 Say Y here if your device has keys connected to
Tony SIMb8a3d6b2010-12-07 02:54:00 -0800190 TCA6416/TCA6408A IO expander. Your board-specific setup logic
Sriramakrishnan Govindarajan30ba3ea2010-05-03 23:47:12 -0700191 must also provide pin-mask details(of which TCA6416 pins
192 are used for keypad).
193
Tony SIMb8a3d6b2010-12-07 02:54:00 -0800194 If enabled the entire TCA6416 device will be managed through
Sriramakrishnan Govindarajan30ba3ea2010-05-03 23:47:12 -0700195 this driver.
196
Tony SIMb8a3d6b2010-12-07 02:54:00 -0800197 To compile this driver as a module, choose M here: the
198 module will be called tca6416_keypad.
Sriramakrishnan Govindarajan30ba3ea2010-05-03 23:47:12 -0700199
Eric Miaobab76142009-06-29 00:20:52 -0700200config KEYBOARD_MATRIX
201 tristate "GPIO driven matrix keypad support"
202 depends on GENERIC_GPIO
203 help
204 Enable support for GPIO driven matrix keypad.
205
206 To compile this driver as a module, choose M here: the
207 module will be called matrix_keypad.
Michael Schmitzc04cb852007-05-01 22:32:38 +0200208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209config KEYBOARD_HIL_OLD
210 tristate "HP HIL keyboard support (simple driver)"
Geert Uytterhoevenda96d0b2006-10-09 22:22:37 +0200211 depends on GSC || HP300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 default y
213 help
214 The "Human Interface Loop" is a older, 8-channel USB-like
215 controller used in several Hewlett Packard models. This driver
216 was adapted from the one written for m68k/hp300, and implements
217 support for a keyboard attached to the HIL port, but not for
218 any other types of HIL input devices like mice or tablets.
219 However, it has been thoroughly tested and is stable.
220
221 If you want full HIL support including support for multiple
Matt LaPlante09509602006-10-03 22:31:37 +0200222 keyboards, mice, and tablets, you have to enable the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 "HP System Device Controller i8042 Support" in the input/serio
224 submenu.
225
226config KEYBOARD_HIL
Dmitry Torokhovfa71c602009-08-07 23:17:47 -0700227 tristate "HP HIL keyboard/pointer support"
Geert Uytterhoevenda96d0b2006-10-09 22:22:37 +0200228 depends on GSC || HP300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 default y
230 select HP_SDC
231 select HIL_MLC
232 select SERIO
233 help
234 The "Human Interface Loop" is a older, 8-channel USB-like
235 controller used in several Hewlett Packard models.
Dmitry Torokhovfa71c602009-08-07 23:17:47 -0700236 This driver implements support for HIL-keyboards and pointing
237 devices (mice, tablets, touchscreens) attached
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 to your machine, so normally you should say Y here.
239
Kristoffer Ericson2aa2cb92007-09-26 00:02:35 -0400240config KEYBOARD_HP6XX
Kristoffer Ericson4ff891e2008-01-14 00:54:23 -0500241 tristate "HP Jornada 6xx keyboard"
Kristoffer Ericson2aa2cb92007-09-26 00:02:35 -0400242 depends on SH_HP6XX
243 select INPUT_POLLDEV
244 help
Kristoffer Ericson4ff891e2008-01-14 00:54:23 -0500245 Say Y here if you have a HP Jornada 620/660/680/690 and want to
246 support the built-in keyboard.
Kristoffer Ericson2aa2cb92007-09-26 00:02:35 -0400247
248 To compile this driver as a module, choose M here: the
249 module will be called jornada680_kbd.
250
Kristoffer Ericsonb0a4e1a2007-09-26 00:02:49 -0400251config KEYBOARD_HP7XX
Kristoffer Ericson4ff891e2008-01-14 00:54:23 -0500252 tristate "HP Jornada 7xx keyboard"
Kristoffer Ericsonb0a4e1a2007-09-26 00:02:49 -0400253 depends on SA1100_JORNADA720_SSP && SA1100_SSP
254 help
Kristoffer Ericson4ff891e2008-01-14 00:54:23 -0500255 Say Y here if you have a HP Jornada 710/720/728 and want to
256 support the built-in keyboard.
Kristoffer Ericsonb0a4e1a2007-09-26 00:02:49 -0400257
258 To compile this driver as a module, choose M here: the
259 module will be called jornada720_kbd.
260
Felipe Balbia48b2d42009-05-15 20:12:47 -0700261config KEYBOARD_LM8323
262 tristate "LM8323 keypad chip"
263 depends on I2C
264 depends on LEDS_CLASS
265 help
266 If you say yes here you get support for the National Semiconductor
267 LM8323 keypad controller.
268
269 To compile this driver as a module, choose M here: the
270 module will be called lm8323.
271
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700272config KEYBOARD_LOCOMO
273 tristate "LoCoMo Keyboard Support"
274 depends on SHARP_LOCOMO
Komal Shahad4e09b2006-09-29 01:59:19 -0700275 help
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700276 Say Y here if you are running Linux on a Sharp Zaurus Collie or Poodle based PDA
Komal Shahad4e09b2006-09-29 01:59:19 -0700277
278 To compile this driver as a module, choose M here: the
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700279 module will be called locomokbd.
280
281config KEYBOARD_MAPLE
282 tristate "Maple bus keyboard"
283 depends on SH_DREAMCAST && MAPLE
284 help
285 Say Y here if you have a Dreamcast console running Linux and have
286 a keyboard attached to its Maple bus.
287
288 To compile this driver as a module, choose M here: the
289 module will be called maple_keyb.
290
Kim Kyuwon0baf81b2009-09-21 22:17:04 -0700291config KEYBOARD_MAX7359
292 tristate "Maxim MAX7359 Key Switch Controller"
293 depends on I2C
294 help
295 If you say yes here you get support for the Maxim MAX7359 Key
296 Switch Controller chip. This providers microprocessors with
297 management of up to 64 key switches
298
299 To compile this driver as a module, choose M here: the
300 module will be called max7359_keypad.
301
Joonyoung Shim312e8e82010-07-04 01:21:25 -0700302config KEYBOARD_MCS
303 tristate "MELFAS MCS Touchkey"
304 depends on I2C
305 help
306 Say Y here if you have the MELFAS MCS5000/5080 touchkey controller
307 chip in your system.
308
309 If unsure, say N.
310
311 To compile this driver as a module, choose M here: the
312 module will be called mcs_touchkey.
313
Alberto Panizzo76cdc082010-01-31 17:52:07 -0800314config KEYBOARD_IMX
315 tristate "IMX keypad support"
316 depends on ARCH_MXC
317 help
318 Enable support for IMX keypad port.
319
320 To compile this driver as a module, choose M here: the
321 module will be called imx_keypad.
322
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700323config KEYBOARD_NEWTON
324 tristate "Newton keyboard"
325 select SERIO
326 help
327 Say Y here if you have a Newton keyboard on a serial port.
328
329 To compile this driver as a module, choose M here: the
330 module will be called newtonkbd.
Komal Shahad4e09b2006-09-29 01:59:19 -0700331
Sundar Iyer1158f0f2010-09-29 19:42:14 -0700332config KEYBOARD_NOMADIK
333 tristate "ST-Ericsson Nomadik SKE keyboard"
334 depends on PLAT_NOMADIK
335 help
336 Say Y here if you want to use a keypad provided on the SKE controller
337 used on the Ux500 and Nomadik platforms
338
339 To compile this driver as a module, choose M here: the
340 module will be called nmk-ske-keypad.
341
Javier Herrero422b5522009-09-16 01:06:42 -0700342config KEYBOARD_OPENCORES
343 tristate "OpenCores Keyboard Controller"
344 help
345 Say Y here if you want to use the OpenCores Keyboard Controller
346 http://www.opencores.org/project,keyboardcontroller
347
348 To compile this driver as a module, choose M here; the
349 module will be called opencores-kbd.
350
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400351config KEYBOARD_PXA27x
Eric Miaoe0f26772008-01-31 00:59:31 -0500352 tristate "PXA27x/PXA3xx keypad support"
Mark F. Brown6d109462010-09-03 18:28:07 -0400353 depends on PXA27x || PXA3xx || ARCH_MMP
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400354 help
Eric Miaobab76142009-06-29 00:20:52 -0700355 Enable support for PXA27x/PXA3xx keypad controller.
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400356
357 To compile this driver as a module, choose M here: the
Eric Miao0e5f11a2008-01-31 00:56:46 -0500358 module will be called pxa27x_keypad.
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400359
Yong Yaoe0ee6292008-12-29 04:00:02 -0800360config KEYBOARD_PXA930_ROTARY
361 tristate "PXA930/PXA935 Enhanced Rotary Controller Support"
362 depends on CPU_PXA930 || CPU_PXA935
363 help
364 Enable support for PXA930/PXA935 Enhanced Rotary Controller.
365
366 To compile this driver as a module, choose M here: the
367 module will be called pxa930_rotary.
368
Joonyoung Shim0fffed22010-07-21 00:45:10 -0700369config KEYBOARD_SAMSUNG
370 tristate "Samsung keypad support"
371 depends on SAMSUNG_DEV_KEYPAD
372 help
373 Say Y here if you want to use the Samsung keypad.
374
375 To compile this driver as a module, choose M here: the
376 module will be called samsung-keypad.
377
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700378config KEYBOARD_STOWAWAY
379 tristate "Stowaway keyboard"
380 select SERIO
Phil Blundell78a56aa2007-01-18 00:44:09 -0500381 help
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700382 Say Y here if you have a Stowaway keyboard on a serial port.
383 Stowaway compatible keyboards like Dicota Input-PDA keyboard
384 are also supported by this driver.
Phil Blundell78a56aa2007-01-18 00:44:09 -0500385
386 To compile this driver as a module, choose M here: the
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700387 module will be called stowaway.
Phil Blundell78a56aa2007-01-18 00:44:09 -0500388
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700389config KEYBOARD_SUNKBD
390 tristate "Sun Type 4 and Type 5 keyboard"
391 select SERIO
Adrian McMenaminb11d2122007-10-12 20:36:13 -0400392 help
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700393 Say Y here if you want to use a Sun Type 4 or Type 5 keyboard,
394 connected either to the Sun keyboard connector or to an serial
395 (RS-232) port via a simple adapter.
Adrian McMenaminb11d2122007-10-12 20:36:13 -0400396
397 To compile this driver as a module, choose M here: the
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700398 module will be called sunkbd.
Michael Hennerich8f740ef2007-10-13 00:36:46 -0400399
Magnus Damm795e6bf2008-03-04 15:23:45 -0800400config KEYBOARD_SH_KEYSC
401 tristate "SuperH KEYSC keypad support"
Magnus Damm4e45ad52010-02-16 21:50:58 -0800402 depends on SUPERH || ARCH_SHMOBILE
Magnus Damm795e6bf2008-03-04 15:23:45 -0800403 help
404 Say Y here if you want to use a keypad attached to the KEYSC block
405 on SuperH processors such as sh7722 and sh7343.
406
407 To compile this driver as a module, choose M here: the
408 module will be called sh_keysc.
Felipe Balbia48b2d42009-05-15 20:12:47 -0700409
Rabin Vincent76f10842010-07-02 16:52:10 +0530410config KEYBOARD_STMPE
411 tristate "STMPE keypad support"
412 depends on MFD_STMPE
413 help
414 Say Y here if you want to use the keypad controller on STMPE I/O
415 expanders.
416
417 To compile this driver as a module, choose M here: the module will be
418 called stmpe-keypad.
419
Miguel Aguilarbc09dca2009-10-13 23:37:32 -0700420config KEYBOARD_DAVINCI
421 tristate "TI DaVinci Key Scan"
422 depends on ARCH_DAVINCI_DM365
423 help
424 Say Y to enable keypad module support for the TI DaVinci
425 platforms (DM365).
426
427 To compile this driver as a module, choose M here: the
428 module will be called davinci_keyscan.
429
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700430config KEYBOARD_OMAP
431 tristate "TI OMAP keypad support"
432 depends on (ARCH_OMAP1 || ARCH_OMAP2)
H Hartley Sweetene06003a2009-04-18 23:43:57 -0700433 help
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700434 Say Y here if you want to use the OMAP keypad.
H Hartley Sweetene06003a2009-04-18 23:43:57 -0700435
436 To compile this driver as a module, choose M here: the
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700437 module will be called omap-keypad.
438
Abraham Arcea17f7952010-08-31 17:05:27 -0700439config KEYBOARD_OMAP4
440 tristate "TI OMAP4 keypad support"
441 depends on ARCH_OMAP4
442 help
443 Say Y here if you want to use the OMAP4 keypad.
444
445 To compile this driver as a module, choose M here: the
446 module will be called omap4-keypad.
447
Rajeev Kumarbc95df72010-11-19 12:41:19 -0800448config KEYBOARD_SPEAR
449 tristate "ST SPEAR keyboard support"
450 depends on PLAT_SPEAR
451 help
452 Say Y here if you want to use the SPEAR keyboard.
453
454 To compile this driver as a module, choose M here: the
455 module will be called spear-keboard.
456
Cyril Chemparathy70614082010-09-20 12:26:40 -0400457config KEYBOARD_TNETV107X
458 tristate "TI TNETV107X keypad support"
459 depends on ARCH_DAVINCI_TNETV107X
460 help
461 Say Y here if you want to use the TNETV107X keypad.
462
463 To compile this driver as a module, choose M here: the
464 module will be called tnetv107x-keypad.
465
David Brownell9d834062009-08-25 19:24:14 -0700466config KEYBOARD_TWL4030
467 tristate "TI TWL4030/TWL5030/TPS659x0 keypad support"
468 depends on TWL4030_CORE
469 help
470 Say Y here if your board use the keypad controller on
471 TWL4030 family chips. It's safe to say enable this
472 even on boards that don't use the keypad controller.
473
474 To compile this driver as a module, choose M here: the
475 module will be called twl4030_keypad.
476
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700477config KEYBOARD_XTKBD
478 tristate "XT keyboard"
479 select SERIO
480 help
481 Say Y here if you want to use the old IBM PC/XT keyboard (or
482 compatible) on your system. This is only possible with a
483 parallel port keyboard adapter, you cannot connect it to the
484 keyboard port on a PC that runs Linux.
485
486 To compile this driver as a module, choose M here: the
487 module will be called xtkbd.
H Hartley Sweetene06003a2009-04-18 23:43:57 -0700488
Wan ZongShun4a152352009-08-09 21:22:22 -0700489config KEYBOARD_W90P910
490 tristate "W90P910 Matrix Keypad support"
491 depends on ARCH_W90X900
492 help
493 Say Y here to enable the matrix keypad on evaluation board
494 based on W90P910.
495
496 To compile this driver as a module, choose M here: the
497 module will be called w90p910_keypad.
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499endif