hwmon: (asus_atk0110) 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
4d630e2ba5
commit
ac561494d4
@@ -5,6 +5,8 @@
|
|||||||
* See COPYING in the top level directory of the kernel tree.
|
* See COPYING in the top level directory of the kernel tree.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
||||||
|
|
||||||
#include <linux/debugfs.h>
|
#include <linux/debugfs.h>
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/hwmon.h>
|
#include <linux/hwmon.h>
|
||||||
@@ -1414,14 +1416,13 @@ static int __init atk0110_init(void)
|
|||||||
|
|
||||||
/* Make sure it's safe to access the device through ACPI */
|
/* Make sure it's safe to access the device through ACPI */
|
||||||
if (!acpi_resources_are_enforced()) {
|
if (!acpi_resources_are_enforced()) {
|
||||||
pr_err("atk: Resources not safely usable due to "
|
pr_err("Resources not safely usable due to acpi_enforce_resources kernel parameter\n");
|
||||||
"acpi_enforce_resources kernel parameter\n");
|
|
||||||
return -EBUSY;
|
return -EBUSY;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = acpi_bus_register_driver(&atk_driver);
|
ret = acpi_bus_register_driver(&atk_driver);
|
||||||
if (ret)
|
if (ret)
|
||||||
pr_info("atk: acpi_bus_register_driver failed: %d\n", ret);
|
pr_info("acpi_bus_register_driver failed: %d\n", ret);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user