diff options
author | Marek BehĂșn <[email protected]> | 2024-07-08 13:40:02 +0200 |
---|---|---|
committer | Arnd Bergmann <[email protected]> | 2024-07-09 15:17:22 +0200 |
commit | dc3c836f9b0f1e615e5143a2afd542fc1162cd86 (patch) | |
tree | 4bc0e009c3367cdbf1d52a3aa58da5cd3a5cc053 | |
parent | 5423a01df8c5cdce58138fae4eef64b4ca5ff9e5 (diff) |
platform: cznic: turris-omnia-mcu: Depend on WATCHDOG
Add depend on WATCHDOG, otherwise modpost fails with
ERROR: modpost: "watchdog_init_timeout" [drivers/platform/cznic/turris-omnia-mcu.ko] undefined!
ERROR: modpost: "devm_watchdog_register_device" [drivers/platform/cznic/turris-omnia-mcu.ko] undefined!
Fixes: ab89fb5fb92c ("platform: cznic: turris-omnia-mcu: Add support for MCU watchdog")
Reported-by: kernel test robot <[email protected]>
Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/
Signed-off-by: Marek BehĂșn <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Arnd Bergmann <[email protected]>
-rw-r--r-- | drivers/platform/cznic/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/platform/cznic/Kconfig b/drivers/platform/cznic/Kconfig index 8992f7b87223..2a5235cf6844 100644 --- a/drivers/platform/cznic/Kconfig +++ b/drivers/platform/cznic/Kconfig @@ -17,6 +17,7 @@ config TURRIS_OMNIA_MCU depends on MACH_ARMADA_38X || COMPILE_TEST depends on I2C depends on OF + depends on WATCHDOG select GPIOLIB select GPIOLIB_IRQCHIP select HW_RANDOM |