diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2010-07-08 16:25:55 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-07-08 16:25:55 -0700 |
commit | 8dd1260f93ecc28cb36fd75e15ddca34b571602e (patch) | |
tree | 6a4b7a71203df12406ce0335e0e3bf5e24ccef51 /drivers/staging/quickstart | |
parent | 6da4cd46902973f267fcc93325f65a93eca52ad5 (diff) | |
download | blackbird-obmc-linux-8dd1260f93ecc28cb36fd75e15ddca34b571602e.tar.gz blackbird-obmc-linux-8dd1260f93ecc28cb36fd75e15ddca34b571602e.zip |
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>
Diffstat (limited to 'drivers/staging/quickstart')
-rw-r--r-- | drivers/staging/quickstart/Kconfig | 10 | ||||
-rw-r--r-- | drivers/staging/quickstart/Makefile | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/drivers/staging/quickstart/Kconfig b/drivers/staging/quickstart/Kconfig new file mode 100644 index 000000000000..659e083fc462 --- /dev/null +++ b/drivers/staging/quickstart/Kconfig @@ -0,0 +1,10 @@ +config ACPI_QUICKSTART + tristate "ACPI Quickstart key driver" + depends on ACPI + help + Say Y here if you have a platform that supports the ACPI + quickstart key protocol. + + To compile this driver as a module, choose M here: the module will be + called quickstart. + diff --git a/drivers/staging/quickstart/Makefile b/drivers/staging/quickstart/Makefile new file mode 100644 index 000000000000..290e0e476797 --- /dev/null +++ b/drivers/staging/quickstart/Makefile @@ -0,0 +1 @@ +obj-$(CONFIG_ACPI_QUICKSTART) += quickstart.o |