Skip to content

Commit

Permalink
Staging: quickstart: add the quickstart driver to the build
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Greg Kroah-Hartman committed Jul 8, 2010
1 parent 6da4cd4 commit 8dd1260
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/staging/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -155,5 +155,7 @@ source "drivers/staging/solo6x10/Kconfig"

source "drivers/staging/tidspbridge/Kconfig"

source "drivers/staging/quickstart/Kconfig"

endif # !STAGING_EXCLUDE_BUILD
endif # STAGING
1 change: 1 addition & 0 deletions drivers/staging/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,4 @@ obj-$(CONFIG_MSM_STAGING) += msm/
obj-$(CONFIG_EASYCAP) += easycap/
obj-$(CONFIG_SOLO6X10) += solo6x10/
obj-$(CONFIG_TIDSPBRIDGE) += tidspbridge/
obj-$(CONFIG_ACPI_QUICKSTART) += quickstart/
10 changes: 10 additions & 0 deletions drivers/staging/quickstart/Kconfig
Original file line number Diff line number Diff line change
@@ -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.

1 change: 1 addition & 0 deletions drivers/staging/quickstart/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
obj-$(CONFIG_ACPI_QUICKSTART) += quickstart.o

0 comments on commit 8dd1260

Please sign in to comment.