From: Geert Uytterhoeven Date: Thu, 25 Apr 2019 08:51:46 +0000 (+0200) Subject: pinctrl: sh-pfc: Correct printk level of group reference warning X-Git-Tag: v5.4-rc1~577^2~36^2~24 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5f304f8c87c71572da4ee514eb2ec50f8f4d2e26;p=platform%2Fkernel%2Flinux-rpi.git pinctrl: sh-pfc: Correct printk level of group reference warning Improve wording while at it. Fixes: 6161b39a14380815 ("pinctrl: sh-pfc: Validate pinmux tables at runtime when debugging") Signed-off-by: Geert Uytterhoeven Reviewed-by: Simon Horman --- diff --git a/drivers/pinctrl/sh-pfc/core.c b/drivers/pinctrl/sh-pfc/core.c index 3f989f5..8a57a68 100644 --- a/drivers/pinctrl/sh-pfc/core.c +++ b/drivers/pinctrl/sh-pfc/core.c @@ -803,8 +803,8 @@ static void sh_pfc_check_info(const struct sh_pfc_soc_info *info) info->groups[i].name); sh_pfc_errors++; } else if (refcnts[i] > 1) { - pr_err("%s: group %s referred by %u functions\n", - drvname, info->groups[i].name, refcnts[i]); + pr_warn("%s: group %s referenced by %u functions\n", + drvname, info->groups[i].name, refcnts[i]); sh_pfc_warnings++; } }