Commit 55d705cce829c37999f26a8d4f1dd701013e7920
Committed by
Guenter Roeck
1 parent
c95df1ae69
Exists in
master
and in
7 other branches
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>
Showing 1 changed file with 3 additions and 1 deletions Side-by-side Diff
drivers/hwmon/ibmaem.c
... | ... | @@ -20,6 +20,8 @@ |
20 | 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 | 25 | #include <linux/ipmi.h> |
24 | 26 | #include <linux/module.h> |
25 | 27 | #include <linux/hwmon.h> |
... | ... | @@ -1090,7 +1092,7 @@ |
1090 | 1092 | |
1091 | 1093 | res = driver_register(&aem_driver.driver); |
1092 | 1094 | if (res) { |
1093 | - printk(KERN_ERR "Can't register aem driver\n"); | |
1095 | + pr_err("Can't register aem driver\n"); | |
1094 | 1096 | return res; |
1095 | 1097 | } |
1096 | 1098 |