aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/platform/x86
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2011-03-29 15:21:54 -0700
committerMatthew Garrett <mjg@redhat.com>2011-05-27 12:35:53 -0400
commitad3f2f038fbd67f3341f760507aed90381114145 (patch)
treec3c953bdd561a8ccec608cc15879be580366d880 /drivers/platform/x86
parentdd8e908e82964b8b493ef241707fb6109aa41cfd (diff)
downloadkernel_samsung_smdk4412-ad3f2f038fbd67f3341f760507aed90381114145.zip
kernel_samsung_smdk4412-ad3f2f038fbd67f3341f760507aed90381114145.tar.gz
kernel_samsung_smdk4412-ad3f2f038fbd67f3341f760507aed90381114145.tar.bz2
xo15-ebook: Use pr_<level>
Use the current logging styles. Remove local #define PREFIX. Add pr_fmt. Convert printk to pr_<level>. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Matthew Garrett <mjg@redhat.com>
Diffstat (limited to 'drivers/platform/x86')
-rw-r--r--drivers/platform/x86/xo15-ebook.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/platform/x86/xo15-ebook.c b/drivers/platform/x86/xo15-ebook.c
index c1372ed..fad153d 100644
--- a/drivers/platform/x86/xo15-ebook.c
+++ b/drivers/platform/x86/xo15-ebook.c
@@ -11,6 +11,8 @@
* your option) any later version.
*/
+#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
+
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
@@ -20,7 +22,6 @@
#include <acpi/acpi_drivers.h>
#define MODULE_NAME "xo15-ebook"
-#define PREFIX MODULE_NAME ": "
#define XO15_EBOOK_CLASS MODULE_NAME
#define XO15_EBOOK_TYPE_UNKNOWN 0x00
@@ -105,7 +106,7 @@ static int ebook_switch_add(struct acpi_device *device)
class = acpi_device_class(device);
if (strcmp(hid, XO15_EBOOK_HID)) {
- printk(KERN_ERR PREFIX "Unsupported hid [%s]\n", hid);
+ pr_err("Unsupported hid [%s]\n", hid);
error = -ENODEV;
goto err_free_input;
}