diff options
author | Alessandro Rubini <rubini@gnudd.com> | 2011-05-26 12:46:17 +0200 |
---|---|---|
committer | Philippe LANGLAIS <philippe.langlais@stericsson.com> | 2011-06-15 14:02:54 +0200 |
commit | b020bd15511d880ceecc4b28a6de2a2d555d3726 (patch) | |
tree | fab2c55f78bf89f5c2b88f08d67003e2dd3a6c41 /drivers | |
parent | bbd9412826b8f7abd7099d98b641f8b50c4cb931 (diff) |
drivers/misc: compile lps001wp using a Kconfig entry
The value is "default y" for the MACH_U8500 family. Note that
this is not ready for upstream because I have no dependencies in place
for the entry. "make randomconfig" will find it sooner or later.
Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
Change-Id: If490d78630a3388e0c7ffa97f2c8e5faf92e373f
Reviewed-on: http://gerrit.lud.stericsson.com/gerrit/24797
Reviewed-by: Philippe LANGLAIS <philippe.langlais@stericsson.com>
Tested-by: Robert MARKLUND <robert.marklund@stericsson.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/input/misc/Kconfig | 7 | ||||
-rw-r--r-- | drivers/input/misc/Makefile | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/drivers/input/misc/Kconfig b/drivers/input/misc/Kconfig index fdf40c76ed0..eccacb074c5 100644 --- a/drivers/input/misc/Kconfig +++ b/drivers/input/misc/Kconfig @@ -216,6 +216,13 @@ config INPUT_KEYSPAN_REMOTE To compile this driver as a module, choose M here: the module will be called keyspan_remote. +config INPUT_LPS001WP + tristate "LPS0001WP pressure sensor from ST Micro" + default y if MACH_U8500 + help + This is a pressure sensor connected to I2C, mounted on the + snowball and other ST-E boards + config INPUT_POWERMATE tristate "Griffin PowerMate and Contour Jog support" depends on USB_ARCH_HAS_HCD diff --git a/drivers/input/misc/Makefile b/drivers/input/misc/Makefile index c8e35e6b295..ed5eb0f1540 100644 --- a/drivers/input/misc/Makefile +++ b/drivers/input/misc/Makefile @@ -26,6 +26,7 @@ obj-$(CONFIG_INPUT_DM355EVM) += dm355evm_keys.o obj-$(CONFIG_HP_SDC_RTC) += hp_sdc_rtc.o obj-$(CONFIG_INPUT_IXP4XX_BEEPER) += ixp4xx-beeper.o obj-$(CONFIG_INPUT_KEYSPAN_REMOTE) += keyspan_remote.o +obj-$(CONFIG_INPUT_LPS001WP) += lps001wp_prs.o obj-$(CONFIG_INPUT_M68K_BEEP) += m68kspkr.o obj-$(CONFIG_INPUT_MAX8925_ONKEY) += max8925_onkey.o obj-$(CONFIG_INPUT_PCAP) += pcap_keys.o |