From: Guenter Roeck <linux@roeck-us.net>
To: "Enrico Weigelt, metux IT consult" <info@metux.net>
Cc: linux-kernel@vger.kernel.org, wim@linux-watchdog.org,
linux-watchdog@vger.kernel.org
Subject: Re: [PATCH 2/3] watchdog: iTCO_wdt: use dev_*() instead of pr_*() for logging
Date: Mon, 30 Nov 2020 14:08:47 -0800 [thread overview]
Message-ID: <20201130220847.GA42939@roeck-us.net> (raw)
In-Reply-To: <20201117152214.32244-2-info@metux.net>
On Tue, Nov 17, 2020 at 04:22:13PM +0100, Enrico Weigelt, metux IT consult wrote:
> For device log outputs, it's better to have device name / ID
> prefixed in all messages, so use the proper dev_*() functions here.
>
> Explicit message on module load/unload don't seem to be really helpful
> (we have other means to check which modules have been loaded), instead
> just add noise to the kernel log. So, removing them.
>
> Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
> ---
> drivers/watchdog/iTCO_wdt.c | 18 ++++++++----------
> 1 file changed, 8 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/watchdog/iTCO_wdt.c b/drivers/watchdog/iTCO_wdt.c
> index f2ddc8fc71cd..edc588a06ae6 100644
> --- a/drivers/watchdog/iTCO_wdt.c
> +++ b/drivers/watchdog/iTCO_wdt.c
> @@ -40,8 +40,6 @@
> * Includes, defines, variables, module parameters, ...
> */
>
> -#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
> -
> /* Module and version information */
> #define DRV_NAME "iTCO_wdt"
> #define DRV_VERSION "1.11"
> @@ -279,7 +277,7 @@ static int iTCO_wdt_start(struct watchdog_device *wd_dev)
> /* disable chipset's NO_REBOOT bit */
> if (p->update_no_reboot_bit(p->no_reboot_priv, false)) {
> spin_unlock(&p->io_lock);
> - pr_err("failed to reset NO_REBOOT flag, reboot disabled by hardware/BIOS\n");
> + dev_err(wd_dev->dev, "failed to reset NO_REBOOT flag, reboot disabled by hardware/BIOS\n");
> return -EIO;
> }
>
> @@ -510,7 +508,7 @@ static int iTCO_wdt_probe(struct platform_device *pdev)
> /* Check chipset's NO_REBOOT bit */
> if (p->update_no_reboot_bit(p->no_reboot_priv, false) &&
> iTCO_vendor_check_noreboot_on()) {
> - pr_info("unable to reset NO_REBOOT flag, device disabled by hardware/BIOS\n");
> + dev_info(dev, "unable to reset NO_REBOOT flag, device disabled by hardware/BIOS\n");
> return -ENODEV; /* Cannot reset NO_REBOOT bit */
> }
>
> @@ -530,12 +528,12 @@ static int iTCO_wdt_probe(struct platform_device *pdev)
> if (!devm_request_region(dev, p->tco_res->start,
> resource_size(p->tco_res),
> pdev->name)) {
> - pr_err("I/O address 0x%04llx already in use, device disabled\n",
> + dev_err(dev, "I/O address 0x%04llx already in use, device disabled\n",
> (u64)TCOBASE(p));
> return -EBUSY;
> }
>
> - pr_info("Found a %s TCO device (Version=%d, TCOBASE=0x%04llx)\n",
> + dev_info(dev, "Found a %s TCO device (Version=%d, TCOBASE=0x%04llx)\n",
> pdata->name, pdata->version, (u64)TCOBASE(p));
>
> /* Clear out the (probably old) status */
> @@ -558,7 +556,7 @@ static int iTCO_wdt_probe(struct platform_device *pdev)
> break;
> }
>
> - p->wddev.info = &ident,
> + p->wddev.info = &ident,
> p->wddev.ops = &iTCO_wdt_ops,
> p->wddev.bootstatus = 0;
> p->wddev.timeout = WATCHDOG_TIMEOUT;
> @@ -575,7 +573,7 @@ static int iTCO_wdt_probe(struct platform_device *pdev)
> if not reset to the default */
> if (iTCO_wdt_set_timeout(&p->wddev, heartbeat)) {
> iTCO_wdt_set_timeout(&p->wddev, WATCHDOG_TIMEOUT);
> - pr_info("timeout value out of range, using %d\n",
> + dev_info(dev, "timeout value out of range, using %d\n",
> WATCHDOG_TIMEOUT);
> }
>
> @@ -583,11 +581,11 @@ static int iTCO_wdt_probe(struct platform_device *pdev)
> watchdog_stop_on_unregister(&p->wddev);
> ret = devm_watchdog_register_device(dev, &p->wddev);
> if (ret != 0) {
> - pr_err("cannot register watchdog device (err=%d)\n", ret);
> + dev_err(dev, "cannot register watchdog device (err=%d)\n", ret);
> return ret;
> }
>
> - pr_info("initialized. heartbeat=%d sec (nowayout=%d)\n",
> + dev_info(dev, "initialized. heartbeat=%d sec (nowayout=%d)\n",
> heartbeat, nowayout);
>
> return 0;
next prev parent reply other threads:[~2020-11-30 22:09 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-17 15:22 [PATCH 1/3] watchdog: iTCO_wdt: use module_platform_device() macro Enrico Weigelt, metux IT consult
2020-11-17 15:22 ` [PATCH 2/3] watchdog: iTCO_wdt: use dev_*() instead of pr_*() for logging Enrico Weigelt, metux IT consult
2020-11-30 22:08 ` Guenter Roeck [this message]
2021-06-09 20:32 ` Bjorn Helgaas
2021-06-09 23:54 ` Guenter Roeck
2021-06-14 17:55 ` Enrico Weigelt, metux IT consult
2021-06-15 14:51 ` Bjorn Helgaas
2020-11-17 15:22 ` [PATCH 3/3] watchdog: iTCO_wdt: use pm_ptr() Enrico Weigelt, metux IT consult
2020-11-30 22:17 ` Guenter Roeck
2020-11-30 22:06 ` [PATCH 1/3] watchdog: iTCO_wdt: use module_platform_device() macro Guenter Roeck
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20201130220847.GA42939@roeck-us.net \
--to=linux@roeck-us.net \
--cc=info@metux.net \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-watchdog@vger.kernel.org \
--cc=wim@linux-watchdog.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox