Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e5c544f8 authored by Chetan C R's avatar Chetan C R
Browse files

input: misc: hbtp_input: snapshot of driver from msm-4.9



Driver snapshot from msm-4.9 to msm-next
0f798a0 input: misc: hbtp_input: allow read access to display_pwr sysfs
5532c00 input: misc: hbtp_input: Support for Region of Interest/sensors
61fbcdc6 input: misc: hbtp_input: Release mutex in error cases in sysfs cb
dc0b965 input: misc: hbtp_input: Add sysfs for suspend/resume
bafe727 input: misc: hbtp_input: snapshot of driver from msm-4.4
Use character device instead of miscellaneous device since
hbtp_input driver is an input device which can be classified
under character device. Misc devices are now deprecated.

Change-Id: I11a7384b66bf3e74a9d63215be3fdb1a402d990c
Signed-off-by: default avatarAlex Sarraf <asarraf@codeaurora.org>
Signed-off-by: default avatarAshok Raj D <adeenada@codeaurora.org>
Signed-off-by: default avatarChetan C R <cchinnad@codeaurora.org>
parent e3e20132
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -117,6 +117,17 @@ config INPUT_E3X0_BUTTON
	  To compile this driver as a module, choose M here: the
	  module will be called e3x0_button.

config INPUT_HBTP_INPUT
	tristate "HBTP input driver support"
	help
	  This option enables an input driver for the host based touch
	  processing.

	  Say Y to enable HBTP input driver.

	  To compile this driver as a module, choose M here: the
	  module will be called hbtp_input.

config INPUT_PCSPKR
	tristate "PC Speaker support"
	depends on PCSPKR_PLATFORM
+1 −0
Original line number Diff line number Diff line
@@ -38,6 +38,7 @@ obj-$(CONFIG_INPUT_GPIO_BEEPER) += gpio-beeper.o
obj-$(CONFIG_INPUT_GPIO_DECODER)	+= gpio_decoder.o
obj-$(CONFIG_INPUT_GPIO)		+= gpio_event.o gpio_matrix.o gpio_input.o gpio_output.o gpio_axis.o
obj-$(CONFIG_INPUT_HISI_POWERKEY)	+= hisi_powerkey.o
obj-$(CONFIG_INPUT_HBTP_INPUT)		+= hbtp_input.o
obj-$(CONFIG_HP_SDC_RTC)		+= hp_sdc_rtc.o
obj-$(CONFIG_INPUT_IMS_PCU)		+= ims-pcu.o
obj-$(CONFIG_INPUT_IXP4XX_BEEPER)	+= ixp4xx-beeper.o
+1615 −0

File added.

Preview size limit exceeded, changes collapsed.

+1 −0
Original line number Diff line number Diff line
@@ -246,6 +246,7 @@ gen_headers_out_arm = [
    "linux/gsmmux.h",
    "linux/gtp.h",
    "linux/hash_info.h",
    "linux/hbtp_input.h",
    "linux/hdlc.h",
    "linux/hdlcdrv.h",
    "linux/hdreg.h",
+1 −0
Original line number Diff line number Diff line
@@ -241,6 +241,7 @@ gen_headers_out_arm64 = [
    "linux/gsmmux.h",
    "linux/gtp.h",
    "linux/hash_info.h",
    "linux/hbtp_input.h",
    "linux/hdlc.h",
    "linux/hdlcdrv.h",
    "linux/hdreg.h",
Loading