projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
63366d3
)
hwmon: (lm70) Use pr_fmt and pr_<level>
author
Joe Perches
<joe@perches.com>
Wed, 20 Oct 2010 06:51:41 +0000
(06:51 +0000)
committer
Guenter Roeck
<guenter.roeck@ericsson.com>
Sat, 8 Jan 2011 18:55:15 +0000
(10:55 -0800)
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>
drivers/hwmon/lm70.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/hwmon/lm70.c
b/drivers/hwmon/lm70.c
index fd108cfc05c7c8cad39b960b484e377ded238b5a..3b84fb5030535d3e16d60e164a68dd0fb8ef8a4f 100644
(file)
--- a/
drivers/hwmon/lm70.c
+++ b/
drivers/hwmon/lm70.c
@@
-24,6
+24,8
@@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
+
#include <linux/init.h>
#include <linux/module.h>
#include <linux/kernel.h>
@@
-67,8
+69,7
@@
static ssize_t lm70_sense_temp(struct device *dev,
*/
status = spi_write_then_read(spi, NULL, 0, &rxbuf[0], 2);
if (status < 0) {
- printk(KERN_WARNING
- "spi_write_then_read failed with status %d\n", status);
+ pr_warn("spi_write_then_read failed with status %d\n", status);
goto out;
}
raw = (rxbuf[0] << 8) + rxbuf[1];