diff options
author | Joe Perches <joe@perches.com> | 2010-10-20 06:51:27 +0000 |
---|---|---|
committer | Guenter Roeck <guenter.roeck@ericsson.com> | 2011-01-08 10:55:02 -0800 |
commit | 2e991201e4ebffb1fb32873d72e2ee4b499269c3 (patch) | |
tree | 02c11bba8dc85c799684092b17b29554bd51d113 | |
parent | fe826749aec090c6f9ab48502bb9a7777572b85b (diff) | |
download | blackbird-obmc-linux-2e991201e4ebffb1fb32873d72e2ee4b499269c3.tar.gz blackbird-obmc-linux-2e991201e4ebffb1fb32873d72e2ee4b499269c3.zip |
hwmon: (adt7470) 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/adt7470.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/hwmon/adt7470.c b/drivers/hwmon/adt7470.c index 87d92a56a939..c6d1ce059aea 100644 --- a/drivers/hwmon/adt7470.c +++ b/drivers/hwmon/adt7470.c @@ -19,6 +19,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt + #include <linux/module.h> #include <linux/jiffies.h> #include <linux/i2c.h> @@ -274,7 +276,7 @@ static int adt7470_read_temperatures(struct i2c_client *client, i2c_smbus_write_byte_data(client, ADT7470_REG_PWM_CFG(2), pwm_cfg[1]); if (res) { - printk(KERN_ERR "ha ha, interrupted"); + pr_err("ha ha, interrupted\n"); return -EAGAIN; } |