diff options
author | Joe Perches <joe@perches.com> | 2010-10-20 02:51:38 -0400 |
---|---|---|
committer | Guenter Roeck <guenter.roeck@ericsson.com> | 2011-01-08 13:55:13 -0500 |
commit | 55d705cce829c37999f26a8d4f1dd701013e7920 (patch) | |
tree | 49561dc559c4e7a9d39bd9cfc330d10ee0cda64c /drivers/hwmon | |
parent | c95df1ae69b85d5f306d86164e245aae614b852a (diff) |
hwmon: (ibmaem) 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/hwmon')
-rw-r--r-- | drivers/hwmon/ibmaem.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/hwmon/ibmaem.c b/drivers/hwmon/ibmaem.c index eaee546af19a..bc6e2ab3a361 100644 --- a/drivers/hwmon/ibmaem.c +++ b/drivers/hwmon/ibmaem.c | |||
@@ -20,6 +20,8 @@ | |||
20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
21 | */ | 21 | */ |
22 | 22 | ||
23 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
24 | |||
23 | #include <linux/ipmi.h> | 25 | #include <linux/ipmi.h> |
24 | #include <linux/module.h> | 26 | #include <linux/module.h> |
25 | #include <linux/hwmon.h> | 27 | #include <linux/hwmon.h> |
@@ -1090,7 +1092,7 @@ static int __init aem_init(void) | |||
1090 | 1092 | ||
1091 | res = driver_register(&aem_driver.driver); | 1093 | res = driver_register(&aem_driver.driver); |
1092 | if (res) { | 1094 | if (res) { |
1093 | printk(KERN_ERR "Can't register aem driver\n"); | 1095 | pr_err("Can't register aem driver\n"); |
1094 | return res; | 1096 | return res; |
1095 | } | 1097 | } |
1096 | 1098 | ||