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>
This commit is contained in:
committed by
Guenter Roeck
parent
63366d37ad
commit
5713017ec5
@@ -24,6 +24,8 @@
|
|||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
||||||
|
|
||||||
#include <linux/init.h>
|
#include <linux/init.h>
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
#include <linux/kernel.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);
|
status = spi_write_then_read(spi, NULL, 0, &rxbuf[0], 2);
|
||||||
if (status < 0) {
|
if (status < 0) {
|
||||||
printk(KERN_WARNING
|
pr_warn("spi_write_then_read failed with status %d\n", status);
|
||||||
"spi_write_then_read failed with status %d\n", status);
|
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
raw = (rxbuf[0] << 8) + rxbuf[1];
|
raw = (rxbuf[0] << 8) + rxbuf[1];
|
||||||
|
Reference in New Issue
Block a user