aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2010-10-20 06:51:37 +0000
committerGuenter Roeck <guenter.roeck@ericsson.com>2011-01-08 10:55:11 -0800
commitc95df1ae69b85d5f306d86164e245aae614b852a (patch)
treef3f9900b3442976073d09f4e219a843eae903d37 /drivers
parent1f923c7a6726b224b6b1b059da5a7f8e3dff1196 (diff)
downloadkernel_samsung_smdk4412-c95df1ae69b85d5f306d86164e245aae614b852a.zip
kernel_samsung_smdk4412-c95df1ae69b85d5f306d86164e245aae614b852a.tar.gz
kernel_samsung_smdk4412-c95df1ae69b85d5f306d86164e245aae614b852a.tar.bz2
hwmon: (core) Use pr_fmt and pr_<level>
Added #define pr_fmt KBUILD_MODNAME ": " fmt Converted printks to pr_<level> Coalesced any long formats Removed prefixes from formats Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/hwmon/hwmon.c4
1 files changed, 3 insertions, 1 deletions
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 <linux/module.h>
#include <linux/device.h>
#include <linux/err.h>
@@ -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;