Re: [PATCH v3] watchdog: Add a watchdog driver for Raspberry Pi boards

2023-04-20 Thread Stefan Roese
On 1/25/23 10:57, ETIENNE DUBLE wrote: This driver supports the bcm2835 watchdog found on Raspberry Pi boards. It is derived from the Linux driver and was tested on two Raspberry Pi board versions (B+ and 3B+). Signed-off-by: Etienne Dublé Applied to u-boot-watchdog/master Thanks, Stefan -

Re: [PATCH v3] watchdog: Add a watchdog driver for Raspberry Pi boards

2023-01-25 Thread Stefan Roese
On 1/25/23 10:57, ETIENNE DUBLE wrote: This driver supports the bcm2835 watchdog found on Raspberry Pi boards. It is derived from the Linux driver and was tested on two Raspberry Pi board versions (B+ and 3B+). Signed-off-by: Etienne Dublé Reviewed-by: Stefan Roese Thanks, Stefan --- Chan

[PATCH v3] watchdog: Add a watchdog driver for Raspberry Pi boards

2023-01-25 Thread ETIENNE DUBLE
This driver supports the bcm2835 watchdog found on Raspberry Pi boards. It is derived from the Linux driver and was tested on two Raspberry Pi board versions (B+ and 3B+). Signed-off-by: Etienne Dublé --- Changes for v2: - fixed whitespaces in email - moved a static variable to the priv struct Ch