summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek BehĂșn <marek.behun@nic.cz>2020-09-18 01:32:50 +0300
committerPavel Machek <pavel@ucw.cz>2020-09-26 22:56:38 +0300
commit2aebb78040e741949ac71f1203f003351061b93b (patch)
treeb6e2ffd0c9a185bb409dda7564d7b8870b4368f9
parentf1b0a43bba3d1ed3fcd13478f8cce24c1275ba92 (diff)
downloadlinux-2aebb78040e741949ac71f1203f003351061b93b.tar.xz
leds: ip30: compile if COMPILE_TEST=y
This driver can be compiled on other platforms with small change if COMPILE_TEST=y. Signed-off-by: Marek BehĂșn <marek.behun@nic.cz> Cc: Pavel Machek <pavel@ucw.cz> Cc: Dan Murphy <dmurphy@ti.com> Cc: Thomas Bogendoerfer <tbogendoerfer@suse.de> Signed-off-by: Pavel Machek <pavel@ucw.cz>
-rw-r--r--drivers/leds/Kconfig2
-rw-r--r--drivers/leds/leds-ip30.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/drivers/leds/Kconfig b/drivers/leds/Kconfig
index 96d54e36e3b5..a008170e73cd 100644
--- a/drivers/leds/Kconfig
+++ b/drivers/leds/Kconfig
@@ -905,7 +905,7 @@ config LEDS_TPS6105X
config LEDS_IP30
tristate "LED support for SGI Octane machines"
depends on LEDS_CLASS
- depends on SGI_MFD_IOC3
+ depends on SGI_MFD_IOC3 || COMPILE_TEST
help
This option enables support for the Red and White LEDs of
SGI Octane machines.
diff --git a/drivers/leds/leds-ip30.c b/drivers/leds/leds-ip30.c
index d4ec7361c616..1f952bad0fe8 100644
--- a/drivers/leds/leds-ip30.c
+++ b/drivers/leds/leds-ip30.c
@@ -3,6 +3,7 @@
* LED Driver for SGI Octane machines
*/
+#include <asm/io.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/platform_device.h>