Re: [PATCH 03/31] wdt: Drop dm.h header file

2020-08-04 Thread Tom Rini
On Sun, Jul 19, 2020 at 10:15:33AM -0600, Simon Glass wrote:

> 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 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature


[PATCH 03/31] wdt: Drop dm.h header file

2020-07-19 Thread Simon Glass
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 
---

 include/wdt.h | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/include/wdt.h b/include/wdt.h
index d2ccfbc62e..bc242c2eb2 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
-- 
2.28.0.rc0.105.gf9edc3c819-goog