diff options
| author | Tom Rini <[email protected]> | 2022-10-10 16:29:17 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-10-18 13:40:40 -0400 |
| commit | d8a1a6812440837d10312e3e2a14282027f03a43 (patch) | |
| tree | a6caf1e9dc11b4ea04568d9bf501f7521648378d /drivers | |
| parent | 892759f5a00a1d06af257259ae5ab955ecb89ce7 (diff) | |
watchdog: omap_wdt: Switch required include for watchdog defines
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 <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/watchdog/omap_wdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/omap_wdt.c b/drivers/watchdog/omap_wdt.c index ca2bc7cfb59..f0e57b4f728 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> |
