Commit cc9da5aa authored by Joe Perches's avatar Joe Perches Committed by Greg Kroah-Hartman

[PATCH] USB: usb_skeleton.c trivial fix

Remove redundant __FILE__.
parent 98e35e32
...@@ -709,7 +709,7 @@ static int __init usb_skel_init(void) ...@@ -709,7 +709,7 @@ static int __init usb_skel_init(void)
/* register this driver with the USB subsystem */ /* register this driver with the USB subsystem */
result = usb_register(&skel_driver); result = usb_register(&skel_driver);
if (result < 0) { if (result < 0) {
err("usb_register failed for the "__FILE__" driver. Error number %d", err("usb_register failed. Error number %d",
result); result);
return -1; return -1;
} }
......
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