diff options
author | Joe Perches <joe@perches.com> | 2010-10-20 02:51:37 -0400 |
---|---|---|
committer | Guenter Roeck <guenter.roeck@ericsson.com> | 2011-01-08 13:55:11 -0500 |
commit | c95df1ae69b85d5f306d86164e245aae614b852a (patch) | |
tree | f3f9900b3442976073d09f4e219a843eae903d37 | |
parent | 1f923c7a6726b224b6b1b059da5a7f8e3dff1196 (diff) |
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>
-rw-r--r-- | drivers/hwmon/hwmon.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/hwmon/hwmon.c b/drivers/hwmon/hwmon.c index 29ea6753f3bb..a61e7815a2a9 100644 --- a/drivers/hwmon/hwmon.c +++ b/drivers/hwmon/hwmon.c | |||
@@ -10,6 +10,8 @@ | |||
10 | the Free Software Foundation; version 2 of the License. | 10 | the Free Software Foundation; version 2 of the License. |
11 | */ | 11 | */ |
12 | 12 | ||
13 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
14 | |||
13 | #include <linux/module.h> | 15 | #include <linux/module.h> |
14 | #include <linux/device.h> | 16 | #include <linux/device.h> |
15 | #include <linux/err.h> | 17 | #include <linux/err.h> |
@@ -119,7 +121,7 @@ static int __init hwmon_init(void) | |||
119 | 121 | ||
120 | hwmon_class = class_create(THIS_MODULE, "hwmon"); | 122 | hwmon_class = class_create(THIS_MODULE, "hwmon"); |
121 | if (IS_ERR(hwmon_class)) { | 123 | if (IS_ERR(hwmon_class)) { |
122 | printk(KERN_ERR "hwmon.c: couldn't create sysfs class\n"); | 124 | pr_err("couldn't create sysfs class\n"); |
123 | return PTR_ERR(hwmon_class); | 125 | return PTR_ERR(hwmon_class); |
124 | } | 126 | } |
125 | return 0; | 127 | return 0; |