aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJacek Anaszewski <j.anaszewski@samsung.com>2015-06-29 10:45:23 -0400
committerBryan Wu <cooloney@gmail.com>2015-06-29 13:09:12 -0400
commit10c19c9eb2f0d5a99cb1ab68186482fcd3eeac6d (patch)
tree5927ec544633faeeb1c7b394cf13f41d184528bc
parent58d1809b9d6128224e092bfaf7632bcef7a15f3e (diff)
leds: fix max77693-led build errors
Fix build errors when LEDS_MAX77693=y and V4L2_FLASH_LED_CLASS=m by restricting LEDS_MAX77693 to =m if V4L2_FLASH_LED_CLASS=m. drivers/leds/leds-max77693.c:1062: undefined reference to `v4l2_flash_release' drivers/leds/leds-max77693.c:1068: undefined reference to `v4l2_flash_release' drivers/built-in.o: In function `max77693_register_led': drivers/leds/leds-max77693.c:968: undefined reference to `v4l2_flash_init' drivers/built-in.o: In function `max77693_led_probe': drivers/leds/leds-max77693.c:1048: undefined reference to `v4l2_flash_release' Signed-off-by: Jacek Anaszewski <j.anaszewski@samsung.com> Cc: Richard Purdie <rpurdie@rpsys.net> Signed-off-by: Bryan Wu <cooloney@gmail.com>
-rw-r--r--drivers/leds/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/leds/Kconfig b/drivers/leds/Kconfig
index 1ef751e35a2f..d97ee24a774f 100644
--- a/drivers/leds/Kconfig
+++ b/drivers/leds/Kconfig
@@ -504,6 +504,7 @@ config LEDS_TLC591XX
504config LEDS_MAX77693 504config LEDS_MAX77693
505 tristate "LED support for MAX77693 Flash" 505 tristate "LED support for MAX77693 Flash"
506 depends on LEDS_CLASS_FLASH 506 depends on LEDS_CLASS_FLASH
507 depends on V4L2_FLASH_LED_CLASS || !V4L2_FLASH_LED_CLASS
507 depends on MFD_MAX77693 508 depends on MFD_MAX77693
508 depends on OF 509 depends on OF
509 help 510 help