From 7eb82f892c90ac66cbbbf6e5441cf49f2bf3c0c1 Mon Sep 17 00:00:00 2001 From: Toshiaki Yamane Date: Tue, 21 Aug 2012 20:13:09 +0900 Subject: [PATCH] --- yaml --- r: 324724 b: refs/heads/master c: 736f5d0a0980a6bf71e5c0d30c2d35225fb3f583 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/drivers/staging/vme/devices/vme_pio2_core.c | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/[refs] b/[refs] index c279c3f1fc89..38e596fb8fd6 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 538a697ac8ca86b4507aaf81cfed5359aa11d606 +refs/heads/master: 736f5d0a0980a6bf71e5c0d30c2d35225fb3f583 diff --git a/trunk/drivers/staging/vme/devices/vme_pio2_core.c b/trunk/drivers/staging/vme/devices/vme_pio2_core.c index 4bf8e05ac312..dad8281915bf 100644 --- a/trunk/drivers/staging/vme/devices/vme_pio2_core.c +++ b/trunk/drivers/staging/vme/devices/vme_pio2_core.c @@ -10,6 +10,8 @@ * option) any later version. */ +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt + #include #include #include @@ -163,15 +165,13 @@ static int __init pio2_init(void) int retval = 0; if (bus_num == 0) { - printk(KERN_ERR "%s: No cards, skipping registration\n", - driver_name); + pr_err("No cards, skipping registration\n"); goto err_nocard; } if (bus_num > PIO2_CARDS_MAX) { - printk(KERN_ERR - "%s: Driver only able to handle %d PIO2 Cards\n", - driver_name, PIO2_CARDS_MAX); + pr_err("Driver only able to handle %d PIO2 Cards\n", + PIO2_CARDS_MAX); bus_num = PIO2_CARDS_MAX; }