aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2022-10-10 16:29:17 -0400
committerTom Rini <trini@konsulko.com>2022-10-18 09:51:26 -0400
commitfb36bd1cd8b969e04710c976cf41e88f6fff8413 (patch)
treeebe382ae3e8248bdefda98de01ed562273fe97fa
parentbf9fd10989b5bfe58ac4df38be38285c799c3c08 (diff)
downloadu-boot-WIP/2022-10-18-TI-platform-updates.zip
u-boot-WIP/2022-10-18-TI-platform-updates.tar.gz
u-boot-WIP/2022-10-18-TI-platform-updates.tar.bz2
watchdog: omap_wdt: Switch required include for watchdog definesWIP/2022-10-18-TI-platform-updates
All of the required values for using the omap_wdt.c driver are found in <asm/ti-common/omap_wdt.h> and this is what is indirectly pulled in via <asm/arch/hardware.h> when it exists. Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r--drivers/watchdog/omap_wdt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/omap_wdt.c b/drivers/watchdog/omap_wdt.c
index ca2bc7c..f0e57b4 100644
--- a/drivers/watchdog/omap_wdt.c
+++ b/drivers/watchdog/omap_wdt.c
@@ -39,7 +39,7 @@
#include <common.h>
#include <log.h>
#include <watchdog.h>
-#include <asm/arch/hardware.h>
+#include <asm/ti-common/omap_wdt.h>
#include <asm/io.h>
#include <asm/processor.h>
#include <asm/arch/cpu.h>