Commit 51616e21 authored by Martyn Welch's avatar Martyn Welch Committed by Greg Kroah-Hartman

Staging: vme: Correct vme_user error message typo

Correction of erroneous error message in vme_user.c.
Signed-off-by: default avatarMartyn Welch <martyn.welch@gefanuc.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 1c47faa0
...@@ -574,8 +574,8 @@ static int __init vme_user_init(void) ...@@ -574,8 +574,8 @@ static int __init vme_user_init(void)
* in future revisions if that ever becomes necessary. * in future revisions if that ever becomes necessary.
*/ */
if (bus_num > USER_BUS_MAX) { if (bus_num > USER_BUS_MAX) {
printk(KERN_ERR "%s: Driver only able to handle %d PIO2 " printk(KERN_ERR "%s: Driver only able to handle %d buses\n",
"Cards\n", driver_name, USER_BUS_MAX); driver_name, USER_BUS_MAX);
bus_num = USER_BUS_MAX; bus_num = USER_BUS_MAX;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment