From: Simon Glass Date: Sun, 19 Jul 2020 16:15:33 +0000 (-0600) Subject: wdt: Drop dm.h header file X-Git-Tag: v2020.10~83^2~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=defce58181e962f9c9979091ac4726cfcded63e7;p=platform%2Fkernel%2Fu-boot.git wdt: Drop dm.h header file This header file should not be included in other header files. Remove it and use a forward declaration instead. Also remove the other headers that are not needed, since the inline code was removed in a recent commit: b4d9452c4 ("watchdog: move initr_watchdog() to wdt-uclass.c") Signed-off-by: Simon Glass --- diff --git a/include/wdt.h b/include/wdt.h index d2ccfbc..bc242c2 100644 --- a/include/wdt.h +++ b/include/wdt.h @@ -6,9 +6,7 @@ #ifndef _WDT_H_ #define _WDT_H_ -#include -#include -#include +struct udevice; /* * Implement a simple watchdog uclass. Watchdog is basically a timer that