From: Joe Perches Date: Wed, 20 Oct 2010 06:51:37 +0000 (+0000) Subject: hwmon: (core) Use pr_fmt and pr_ X-Git-Tag: v2.6.38-rc1~430^2~32 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c95df1ae69b85d5f306d86164e245aae614b852a;p=platform%2Fkernel%2Flinux-stable.git hwmon: (core) Use pr_fmt and pr_ Added #define pr_fmt KBUILD_MODNAME ": " fmt Converted printks to pr_ Coalesced any long formats Removed prefixes from formats Signed-off-by: Joe Perches Signed-off-by: Guenter Roeck --- diff --git a/drivers/hwmon/hwmon.c b/drivers/hwmon/hwmon.c index 29ea675..a61e781 100644 --- a/drivers/hwmon/hwmon.c +++ b/drivers/hwmon/hwmon.c @@ -10,6 +10,8 @@ the Free Software Foundation; version 2 of the License. */ +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt + #include #include #include @@ -119,7 +121,7 @@ static int __init hwmon_init(void) hwmon_class = class_create(THIS_MODULE, "hwmon"); if (IS_ERR(hwmon_class)) { - printk(KERN_ERR "hwmon.c: couldn't create sysfs class\n"); + pr_err("couldn't create sysfs class\n"); return PTR_ERR(hwmon_class); } return 0;