From: Randy Dunlap <[email protected]> Make LEDS_LP55XX_COMMON depend on I2C to fix build errors:
leds-lp55xx-common.c:(.text+0x9d): undefined reference to `i2c_smbus_read_byte_data' leds-lp55xx-common.c:(.text+0x8fc): undefined reference to `i2c_smbus_write_byte_data' These errors happened when I2C=m and LEDS_LP55XX_COMMON=y, so prevent that from being possible. Signed-off-by: Randy Dunlap <[email protected]> Cc: Jacek Anaszewski <[email protected]> Cc: Pavel Machek <[email protected]> Cc: Dan Murphy <[email protected]> Cc: [email protected] Cc: Milo Kim <[email protected]> Cc: Mathias Nyman <[email protected]> --- drivers/leds/Kconfig | 1 + 1 file changed, 1 insertion(+) --- linux-next-20200727.orig/drivers/leds/Kconfig +++ linux-next-20200727/drivers/leds/Kconfig @@ -399,6 +399,7 @@ config LEDS_LP55XX_COMMON tristate "Common Driver for TI/National LP5521/5523/55231/5562/8501" depends on LEDS_CLASS_MULTICOLOR || !LEDS_CLASS_MULTICOLOR depends on OF + depends on I2C select FW_LOADER select FW_LOADER_USER_HELPER help

