diff options
Diffstat (limited to 'drivers/input/misc/Kconfig')
-rw-r--r-- | drivers/input/misc/Kconfig | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/drivers/input/misc/Kconfig b/drivers/input/misc/Kconfig index c44b9eafc556..b49e23379723 100644 --- a/drivers/input/misc/Kconfig +++ b/drivers/input/misc/Kconfig | |||
@@ -327,6 +327,17 @@ config INPUT_PCF8574 | |||
327 | To compile this driver as a module, choose M here: the | 327 | To compile this driver as a module, choose M here: the |
328 | module will be called pcf8574_keypad. | 328 | module will be called pcf8574_keypad. |
329 | 329 | ||
330 | config INPUT_PWM_BEEPER | ||
331 | tristate "PWM beeper support" | ||
332 | depends on HAVE_PWM | ||
333 | help | ||
334 | Say Y here to get support for PWM based beeper devices. | ||
335 | |||
336 | If unsure, say N. | ||
337 | |||
338 | To compile this driver as a module, choose M here: the module will be | ||
339 | called pwm-beeper. | ||
340 | |||
330 | config INPUT_GPIO_ROTARY_ENCODER | 341 | config INPUT_GPIO_ROTARY_ENCODER |
331 | tristate "Rotary encoders connected to GPIO pins" | 342 | tristate "Rotary encoders connected to GPIO pins" |
332 | depends on GPIOLIB && GENERIC_GPIO | 343 | depends on GPIOLIB && GENERIC_GPIO |
@@ -390,4 +401,41 @@ config INPUT_PCAP | |||
390 | To compile this driver as a module, choose M here: the | 401 | To compile this driver as a module, choose M here: the |
391 | module will be called pcap_keys. | 402 | module will be called pcap_keys. |
392 | 403 | ||
404 | config INPUT_ADXL34X | ||
405 | tristate "Analog Devices ADXL34x Three-Axis Digital Accelerometer" | ||
406 | default n | ||
407 | help | ||
408 | Say Y here if you have a Accelerometer interface using the | ||
409 | ADXL345/6 controller, and your board-specific initialization | ||
410 | code includes that in its table of devices. | ||
411 | |||
412 | This driver can use either I2C or SPI communication to the | ||
413 | ADXL345/6 controller. Select the appropriate method for | ||
414 | your system. | ||
415 | |||
416 | If unsure, say N (but it's safe to say "Y"). | ||
417 | |||
418 | To compile this driver as a module, choose M here: the | ||
419 | module will be called adxl34x. | ||
420 | |||
421 | config INPUT_ADXL34X_I2C | ||
422 | tristate "support I2C bus connection" | ||
423 | depends on INPUT_ADXL34X && I2C | ||
424 | default y | ||
425 | help | ||
426 | Say Y here if you have ADXL345/6 hooked to an I2C bus. | ||
427 | |||
428 | To compile this driver as a module, choose M here: the | ||
429 | module will be called adxl34x-i2c. | ||
430 | |||
431 | config INPUT_ADXL34X_SPI | ||
432 | tristate "support SPI bus connection" | ||
433 | depends on INPUT_ADXL34X && SPI | ||
434 | default y | ||
435 | help | ||
436 | Say Y here if you have ADXL345/6 hooked to a SPI bus. | ||
437 | |||
438 | To compile this driver as a module, choose M here: the | ||
439 | module will be called adxl34x-spi. | ||
440 | |||
393 | endif | 441 | endif |