All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] watchdog: Drop GD_FLG_WDT_READY as it's not used any more
@ 2022-11-17  8:20 Stefan Roese
  2022-11-22 10:36 ` Stefan Roese
  0 siblings, 1 reply; 2+ messages in thread
From: Stefan Roese @ 2022-11-17  8:20 UTC (permalink / raw)
  To: u-boot; +Cc: Rasmus Villemoes

Since commit c2fd0ca1a822
("watchdog: Integrate watchdog triggering into the cyclic framework")
GD_FLG_WDT_READY has become write-only. This patch now removes this
flag completely.

The vacant spot in gd_flags is filled with the newly introduced
GD_FLG_CYCLIC_RUNNING flag.

Suggested-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk>
Signed-off-by: Stefan Roese <sr@denx.de>
---
 drivers/watchdog/wdt-uclass.c     | 1 -
 include/asm-generic/global_data.h | 8 ++------
 2 files changed, 2 insertions(+), 7 deletions(-)

diff --git a/drivers/watchdog/wdt-uclass.c b/drivers/watchdog/wdt-uclass.c
index 82df0ff0be5a..509896a1b808 100644
--- a/drivers/watchdog/wdt-uclass.c
+++ b/drivers/watchdog/wdt-uclass.c
@@ -105,7 +105,6 @@ int initr_watchdog(void)
 		init_watchdog_dev(dev);
 	}
 
-	gd->flags |= GD_FLG_WDT_READY;
 	return 0;
 }
 
diff --git a/include/asm-generic/global_data.h b/include/asm-generic/global_data.h
index 88829126fb2a..da17ac8cbc88 100644
--- a/include/asm-generic/global_data.h
+++ b/include/asm-generic/global_data.h
@@ -635,9 +635,9 @@ enum gd_flags {
 	 */
 	GD_FLG_LOG_READY = 0x10000,
 	/**
-	 * @GD_FLG_WDT_READY: watchdog is ready for use
+	 * @GD_FLG_CYCLIC_RUNNING: cyclic_run is in progress
 	 */
-	GD_FLG_WDT_READY = 0x20000,
+	GD_FLG_CYCLIC_RUNNING = 0x20000,
 	/**
 	 * @GD_FLG_SKIP_LL_INIT: don't perform low-level initialization
 	 */
@@ -650,10 +650,6 @@ enum gd_flags {
 	 * @GD_FLG_FDT_CHANGED: Device tree change has been detected by tests
 	 */
 	GD_FLG_FDT_CHANGED = 0x100000,
-	/**
-	 * @GD_FLG_CYCLIC_RUNNING: cyclic_run is in progress
-	 */
-	GD_FLG_CYCLIC_RUNNING = 0x200000,
 };
 
 #endif /* __ASSEMBLY__ */
-- 
2.38.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] watchdog: Drop GD_FLG_WDT_READY as it's not used any more
  2022-11-17  8:20 [PATCH] watchdog: Drop GD_FLG_WDT_READY as it's not used any more Stefan Roese
@ 2022-11-22 10:36 ` Stefan Roese
  0 siblings, 0 replies; 2+ messages in thread
From: Stefan Roese @ 2022-11-22 10:36 UTC (permalink / raw)
  To: u-boot; +Cc: Rasmus Villemoes

On 17.11.22 09:20, Stefan Roese wrote:
> Since commit c2fd0ca1a822
> ("watchdog: Integrate watchdog triggering into the cyclic framework")
> GD_FLG_WDT_READY has become write-only. This patch now removes this
> flag completely.
> 
> The vacant spot in gd_flags is filled with the newly introduced
> GD_FLG_CYCLIC_RUNNING flag.
> 
> Suggested-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk>
> Signed-off-by: Stefan Roese <sr@denx.de>

Applied to u-boot-watchdog/master

Thanks,
Stefan

> ---
>   drivers/watchdog/wdt-uclass.c     | 1 -
>   include/asm-generic/global_data.h | 8 ++------
>   2 files changed, 2 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/watchdog/wdt-uclass.c b/drivers/watchdog/wdt-uclass.c
> index 82df0ff0be5a..509896a1b808 100644
> --- a/drivers/watchdog/wdt-uclass.c
> +++ b/drivers/watchdog/wdt-uclass.c
> @@ -105,7 +105,6 @@ int initr_watchdog(void)
>   		init_watchdog_dev(dev);
>   	}
>   
> -	gd->flags |= GD_FLG_WDT_READY;
>   	return 0;
>   }
>   
> diff --git a/include/asm-generic/global_data.h b/include/asm-generic/global_data.h
> index 88829126fb2a..da17ac8cbc88 100644
> --- a/include/asm-generic/global_data.h
> +++ b/include/asm-generic/global_data.h
> @@ -635,9 +635,9 @@ enum gd_flags {
>   	 */
>   	GD_FLG_LOG_READY = 0x10000,
>   	/**
> -	 * @GD_FLG_WDT_READY: watchdog is ready for use
> +	 * @GD_FLG_CYCLIC_RUNNING: cyclic_run is in progress
>   	 */
> -	GD_FLG_WDT_READY = 0x20000,
> +	GD_FLG_CYCLIC_RUNNING = 0x20000,
>   	/**
>   	 * @GD_FLG_SKIP_LL_INIT: don't perform low-level initialization
>   	 */
> @@ -650,10 +650,6 @@ enum gd_flags {
>   	 * @GD_FLG_FDT_CHANGED: Device tree change has been detected by tests
>   	 */
>   	GD_FLG_FDT_CHANGED = 0x100000,
> -	/**
> -	 * @GD_FLG_CYCLIC_RUNNING: cyclic_run is in progress
> -	 */
> -	GD_FLG_CYCLIC_RUNNING = 0x200000,
>   };
>   
>   #endif /* __ASSEMBLY__ */

Viele Grüße,
Stefan Roese

-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-51 Fax: (+49)-8142-66989-80 Email: sr@denx.de

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-11-22 10:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-17  8:20 [PATCH] watchdog: Drop GD_FLG_WDT_READY as it's not used any more Stefan Roese
2022-11-22 10:36 ` Stefan Roese

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.