Message ID | 20241004200314.5459-1-wsa+renesas@sang-engineering.com |
---|---|
Headers | show |
Series | watchdog: don't print out if registering watchdog fails | expand |
On Fri, Oct 04, 2024 at 10:03:04PM +0200, Wolfram Sang wrote: > So far, only 'watchdog_register_device' prints an error if registering > the watchdog driver fails. '__watchdog_register_device' doesn't. > Refactor the code so that both print out. Drivers can then rely on that > and skip their own error messages. > > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Reviewed-by: Guenter Roeck <linux@roeck-us.net>
On Fri, Oct 04, 2024 at 10:03:06PM +0200, Wolfram Sang wrote: > The core will do this already. > > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Reviewed-by: Guenter Roeck <linux@roeck-us.net>
On Fri, Oct 04, 2024 at 10:03:08PM +0200, Wolfram Sang wrote: > The core will do this already. > > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Reviewed-by: Guenter Roeck <linux@roeck-us.net>
On Fri, Oct 04, 2024 at 10:03:10PM +0200, Wolfram Sang wrote: > The core will do this already. > > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Reviewed-by: Guenter Roeck <linux@roeck-us.net>
On Fri, Oct 04, 2024 at 10:03:12PM +0200, Wolfram Sang wrote: > The core will do this already. > > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Reviewed-by: Guenter Roeck <linux@roeck-us.net>
On Fri, Oct 04, 2024 at 10:03:06PM +0200, Wolfram Sang wrote: > The core will do this already. > > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> > --- > drivers/watchdog/gxp-wdt.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) Question: should email have been titled "watchdog: gxp-wdt: ..." instead of "watchdog: hpe-wdt: ..." to match the module name as the email title gets put into the git log for the file? Thanks Jerry > > diff --git a/drivers/watchdog/gxp-wdt.c b/drivers/watchdog/gxp-wdt.c > index 2fd85be88278..f2c236160266 100644 > --- a/drivers/watchdog/gxp-wdt.c > +++ b/drivers/watchdog/gxp-wdt.c > @@ -151,10 +151,8 @@ static int gxp_wdt_probe(struct platform_device *pdev) > > watchdog_stop_on_reboot(&drvdata->wdd); > err = devm_watchdog_register_device(dev, &drvdata->wdd); > - if (err) { > - dev_err(dev, "Failed to register watchdog device"); > + if (err) > return err; > - } > > dev_info(dev, "HPE GXP watchdog timer"); > > -- > 2.45.2 >
On Fri, Oct 04, 2024 at 03:29:09PM -0600, Jerry Hoemann wrote: > On Fri, Oct 04, 2024 at 10:03:06PM +0200, Wolfram Sang wrote: > > The core will do this already. > > > > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> > > --- > > drivers/watchdog/gxp-wdt.c | 4 +--- > > 1 file changed, 1 insertion(+), 3 deletions(-) > > Question: should email have been titled > "watchdog: gxp-wdt: ..." > instead of > "watchdog: hpe-wdt: ..." > > to match the module name as the email title gets put into > the git log for the file? No objection, we can do that. I check git-log for the prefixes and found there the following: 6b47441bed49 ("watchdog: hpe-wdt: Introduce HPE GXP Watchdog") I am fine with both.
> The core will do this already. > > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Reviewed-by: Michael Walle <mwalle@kernel.org> Thanks! -michael
On Sat, Oct 05, 2024 at 07:23:19AM +0200, Wolfram Sang wrote: > On Fri, Oct 04, 2024 at 03:29:09PM -0600, Jerry Hoemann wrote: > > On Fri, Oct 04, 2024 at 10:03:06PM +0200, Wolfram Sang wrote: > > > The core will do this already. > > > > > > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> > > > --- > > > drivers/watchdog/gxp-wdt.c | 4 +--- > > > 1 file changed, 1 insertion(+), 3 deletions(-) > > > > Question: should email have been titled > > "watchdog: gxp-wdt: ..." > > instead of > > "watchdog: hpe-wdt: ..." > > > > to match the module name as the email title gets put into > > the git log for the file? > > No objection, we can do that. I check git-log for the prefixes and found > there the following: > > 6b47441bed49 ("watchdog: hpe-wdt: Introduce HPE GXP Watchdog") That is somewhat unfortunate as it will can lead to confusion with the long standing hpwdt. These are different watchdogs. Jerry > > I am fine with both. >