]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
drivers/watchdog/Kconfig: Update CONFIG_WATCHDOG_RTAS dependencies
authorMurilo Opsfelder Araujo <mopsfelder@gmail.com>
Mon, 29 May 2017 13:26:28 +0000 (10:26 -0300)
committerMichael Ellerman <mpe@ellerman.id.au>
Thu, 15 Jun 2017 06:37:40 +0000 (16:37 +1000)
drivers/watchdog/wdrtas.c uses symbols defined in arch/powerpc/kernel/rtas.c,
which are exported iff CONFIG_PPC_RTAS is selected. Building wdrtas.c without
setting CONFIG_PPC_RTAS throws the following errors:

    ERROR: ".rtas_token" [drivers/watchdog/wdrtas.ko] undefined!
    ERROR: "rtas_data_buf" [drivers/watchdog/wdrtas.ko] undefined!
    ERROR: "rtas_data_buf_lock" [drivers/watchdog/wdrtas.ko] undefined!
    ERROR: ".rtas_get_sensor" [drivers/watchdog/wdrtas.ko] undefined!
    ERROR: ".rtas_call" [drivers/watchdog/wdrtas.ko] undefined!

This was identified during a randconfig build where CONFIG_WATCHDOG_RTAS=m and
CONFIG_PPC_RTAS was not set. Logs are here:

    http://kisskb.ellerman.id.au/kisskb/buildresult/12982152/

This patch fixes the issue by updating CONFIG_WATCHDOG_RTAS to depend on just
CONFIG_PPC_RTAS, removing COMPILE_TEST entirely.

Signed-off-by: Murilo Opsfelder Araujo <mopsfelder@gmail.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
drivers/watchdog/Kconfig

index 8b9049dac0948db6cc0fca2f25c9f4e5f5cae6bd..e6e31a16f68fcd1a73385d07e3da8f61c2f8bffe 100644 (file)
@@ -1688,7 +1688,7 @@ config MEN_A21_WDT
 
 config WATCHDOG_RTAS
        tristate "RTAS watchdog"
-       depends on PPC_RTAS || (PPC64 && COMPILE_TEST)
+       depends on PPC_RTAS
        help
          This driver adds watchdog support for the RTAS watchdog.