This repository has been archived by the owner on Dec 29, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This cleans up a patch that had extra indents, as well as updates our base revision.
- Loading branch information
1 parent
83055e9
commit c2177ff
Showing
2 changed files
with
29 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 28 additions & 28 deletions
56
overlay/target/linux/x86/patches-4.4/800-add-apu2-gpio-driver.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
--- a/drivers/leds/Kconfig 2016-09-15 01:29:29.000000000 -0500 | ||
+++ b/drivers/leds/Kconfig 2016-09-26 02:36:55.349774421 -0500 | ||
@@ -49,6 +49,15 @@ | ||
help | ||
This option enables support for the LEDs on the AAT1290. | ||
--- a/drivers/leds/Kconfig 2016-09-15 01:29:29.000000000 -0500 | ||
+++ b/drivers/leds/Kconfig 2016-09-26 02:36:55.349774421 -0500 | ||
@@ -49,6 +49,15 @@ | ||
help | ||
This option enables support for the LEDs on the AAT1290. | ||
|
||
+config LEDS_APU2 | ||
+ tristate "LED Support for the PCEngines APU2 board" | ||
+ depends on LEDS_CLASS | ||
+ depends on GPIOLIB | ||
+ help | ||
+ This option enables support for the CPU GPIO pins on the PCEngines | ||
+ APU2 board, as well as adds system support for the reset button and | ||
+ front panel LEDs. | ||
+ | ||
config LEDS_BCM6328 | ||
tristate "LED Support for Broadcom BCM6328" | ||
depends on LEDS_CLASS | ||
diff -Naur ./a/Makefile ./b/Makefile | ||
--- a/drivers/leds/Makefile 2016-09-26 02:23:39.787307000 -0500 | ||
+++ b/drivers/leds/Makefile 2016-09-26 02:39:41.669443541 -0500 | ||
@@ -8,6 +8,7 @@ | ||
# LED Platform Drivers | ||
obj-$(CONFIG_LEDS_88PM860X) += leds-88pm860x.o | ||
obj-$(CONFIG_LEDS_AAT1290) += leds-aat1290.o | ||
+obj-$(CONFIG_LEDS_APU2) += leds-apu2.o | ||
obj-$(CONFIG_LEDS_BCM6328) += leds-bcm6328.o | ||
obj-$(CONFIG_LEDS_BCM6358) += leds-bcm6358.o | ||
obj-$(CONFIG_LEDS_BD2802) += leds-bd2802.o | ||
+config LEDS_APU2 | ||
+ tristate "LED Support for the PCEngines APU2 board" | ||
+ depends on LEDS_CLASS | ||
+ depends on GPIOLIB | ||
+ help | ||
+ This option enables support for the CPU GPIO pins on the PCEngines | ||
+ APU2 board, as well as adds system support for the reset button and | ||
+ front panel LEDs. | ||
+ | ||
config LEDS_BCM6328 | ||
tristate "LED Support for Broadcom BCM6328" | ||
depends on LEDS_CLASS | ||
diff -Naur ./a/Makefile ./b/Makefile | ||
--- a/drivers/leds/Makefile 2016-09-26 02:23:39.787307000 -0500 | ||
+++ b/drivers/leds/Makefile 2016-09-26 02:39:41.669443541 -0500 | ||
@@ -8,6 +8,7 @@ | ||
# LED Platform Drivers | ||
obj-$(CONFIG_LEDS_88PM860X) += leds-88pm860x.o | ||
obj-$(CONFIG_LEDS_AAT1290) += leds-aat1290.o | ||
+obj-$(CONFIG_LEDS_APU2) += leds-apu2.o | ||
obj-$(CONFIG_LEDS_BCM6328) += leds-bcm6328.o | ||
obj-$(CONFIG_LEDS_BCM6358) += leds-bcm6358.o | ||
obj-$(CONFIG_LEDS_BD2802) += leds-bd2802.o |