Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Staging: quickstart: add the quickstart driver to the build

This adds the needed Kconfig and Makefile changes to add
the quickstart driver to the build.

Cc: Angelo Arrifano <miknix@gentoo.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

+14
+2
drivers/staging/Kconfig
··· 155 155 156 156 source "drivers/staging/tidspbridge/Kconfig" 157 157 158 + source "drivers/staging/quickstart/Kconfig" 159 + 158 160 endif # !STAGING_EXCLUDE_BUILD 159 161 endif # STAGING
+1
drivers/staging/Makefile
··· 58 58 obj-$(CONFIG_EASYCAP) += easycap/ 59 59 obj-$(CONFIG_SOLO6X10) += solo6x10/ 60 60 obj-$(CONFIG_TIDSPBRIDGE) += tidspbridge/ 61 + obj-$(CONFIG_ACPI_QUICKSTART) += quickstart/
+10
drivers/staging/quickstart/Kconfig
··· 1 + config ACPI_QUICKSTART 2 + tristate "ACPI Quickstart key driver" 3 + depends on ACPI 4 + help 5 + Say Y here if you have a platform that supports the ACPI 6 + quickstart key protocol. 7 + 8 + To compile this driver as a module, choose M here: the module will be 9 + called quickstart. 10 +
+1
drivers/staging/quickstart/Makefile
··· 1 + obj-$(CONFIG_ACPI_QUICKSTART) += quickstart.o