Messages in this thread Patch in this message |  | | From | Guenter Roeck <> | Subject | [PATCH] staging: board: Add dependency on CLKDEV_LOOKUP | Date | Fri, 26 Jun 2015 19:39:24 -0700 |
| |
The code depends on CLKDEV_LOOKUP since commit 225d68d852f1 ("staging: board: Add support for devices with complex dependencies").
Related build error (powerpc:allmodconfig):
drivers/built-in.o: In function `.board_staging_register_clock': (.init.text+0x1d8e0): undefined reference to `.clk_add_alias'
Fixes: 225d68d852f1 ("staging: board: Add support for devices with complex dependencies") Cc: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Guenter Roeck <linux@roeck-us.net> --- drivers/staging/board/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/board/Kconfig b/drivers/staging/board/Kconfig index b8ee81840666..4ff5a795055f 100644 --- a/drivers/staging/board/Kconfig +++ b/drivers/staging/board/Kconfig @@ -1,6 +1,6 @@ config STAGING_BOARD bool "Staging Board Support" - depends on OF_ADDRESS + depends on OF_ADDRESS && CLKDEV_LOOKUP help Select to enable per-board staging support code. -- 2.1.0
|  |