staging: usbip: Renaming pr_warning function

Eliminated the following warning "WARNING: Prefer pr_warn(... to
pr_warning(...)" by renaming the pr_warning function to pr_warn in
usbip_event.c file.

Signed-off-by: Lisa Nguyen <lisa@xenapiadmin.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Lisa Nguyen 2013-05-05 16:28:37 -07:00 committed by Greg Kroah-Hartman
parent 9799d12645
commit ff4513705d
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ int usbip_start_eh(struct usbip_device *ud)
ud->eh = kthread_run(event_handler_loop, ud, "usbip_eh");
if (IS_ERR(ud->eh)) {
pr_warning("Unable to start control thread\n");
pr_warn("Unable to start control thread\n");
return PTR_ERR(ud->eh);
}