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

Commit c2bf092e authored by Hiroshi Miura's avatar Hiroshi Miura Committed by Greg Kroah-Hartman
Browse files

Staging: add pcc-acpi driver



Adds the pcc-acpi driver to the staging tree.

From: Hiroshi Miura <miura@da-cha.org>
Cc: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 2515ddc6
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -43,4 +43,6 @@ source "drivers/staging/echo/Kconfig"

source "drivers/staging/at76_usb/Kconfig"

source "drivers/staging/pcc-acpi/Kconfig"

endif # STAGING
+1 −0
Original line number Diff line number Diff line
@@ -13,3 +13,4 @@ obj-$(CONFIG_W35UND) += winbond/
obj-$(CONFIG_PRISM2_USB)	+= wlan-ng/
obj-$(CONFIG_ECHO)		+= echo/
obj-$(CONFIG_USB_ATMEL)		+= at76_usb/
obj-$(CONFIG_PCC_ACPI)		+= pcc-acpi/
+11 −0
Original line number Diff line number Diff line
config PCC_ACPI
	tristate "Panasonic ACPI Hotkey support"
	depends on ACPI
	default n
	---help---
	  This driver provides support for Panasonic hotkeys through the
	  ACPI interface.  This works for the Panasonic R1 (N variant),
	  R2, R3, T2, W2, and Y2 laptops.

	  To compile this driver as a module, choose M here. The module
	  will be called pcc-acpi.
+1 −0
Original line number Diff line number Diff line
obj-$(CONFIG_PCC_ACPI)		+= pcc-acpi.o
+7 −0
Original line number Diff line number Diff line
TODO:
	- Lindent fixes
	- checkpatch.pl fixes
	- verify that the acpi interface is correct
	- remove /proc dependancy if needed (not sure yet.)

Please send any patches for this driver to Greg Kroah-Hartman <greg@kroah.com>
Loading