diff options
author | Joe Perches <joe@perches.com> | 2010-10-20 02:51:41 -0400 |
---|---|---|
committer | Guenter Roeck <guenter.roeck@ericsson.com> | 2011-01-08 13:55:15 -0500 |
commit | 5713017ec5e1a437ae4d0d196bce46d572eb7e1a (patch) | |
tree | 7e7794bc3fc1f9f1976317a57fbdb2b71c14b6e9 /drivers/hwmon/lm70.c | |
parent | 63366d37ad5dbb4f208b517c88ea4bd41738dbf7 (diff) |
hwmon: (lm70) 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/lm70.c')
-rw-r--r-- | drivers/hwmon/lm70.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/hwmon/lm70.c b/drivers/hwmon/lm70.c index fd108cfc05c7..3b84fb503053 100644 --- a/drivers/hwmon/lm70.c +++ b/drivers/hwmon/lm70.c | |||
@@ -24,6 +24,8 @@ | |||
24 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 24 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
25 | */ | 25 | */ |
26 | 26 | ||
27 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
28 | |||
27 | #include <linux/init.h> | 29 | #include <linux/init.h> |
28 | #include <linux/module.h> | 30 | #include <linux/module.h> |
29 | #include <linux/kernel.h> | 31 | #include <linux/kernel.h> |
@@ -67,8 +69,7 @@ static ssize_t lm70_sense_temp(struct device *dev, | |||
67 | */ | 69 | */ |
68 | status = spi_write_then_read(spi, NULL, 0, &rxbuf[0], 2); | 70 | status = spi_write_then_read(spi, NULL, 0, &rxbuf[0], 2); |
69 | if (status < 0) { | 71 | if (status < 0) { |
70 | printk(KERN_WARNING | 72 | pr_warn("spi_write_then_read failed with status %d\n", status); |
71 | "spi_write_then_read failed with status %d\n", status); | ||
72 | goto out; | 73 | goto out; |
73 | } | 74 | } |
74 | raw = (rxbuf[0] << 8) + rxbuf[1]; | 75 | raw = (rxbuf[0] << 8) + rxbuf[1]; |