diff options
author | Masanari Iida <standby24x7@gmail.com> | 2015-09-30 12:51:51 +0900 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-10-05 04:58:24 +0100 |
commit | d5f9e73309b774dd9d86428edd7958b0960bcb85 (patch) | |
tree | c59085d2f9327800da86a10a45ee8b3ebf6e1d74 /drivers/usb/host/u132-hcd.c | |
parent | 5119dd1e3f7e84073dea4d53322f2fd99f0d0d8b (diff) | |
download | op-kernel-dev-d5f9e73309b774dd9d86428edd7958b0960bcb85.zip op-kernel-dev-d5f9e73309b774dd9d86428edd7958b0960bcb85.tar.gz |
USB: u132-hcd: Fix seperate word in printk message
This patch fix seperated word in printk message.
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/u132-hcd.c')
-rw-r--r-- | drivers/usb/host/u132-hcd.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/usb/host/u132-hcd.c b/drivers/usb/host/u132-hcd.c index a67bd50..0a94895 100644 --- a/drivers/usb/host/u132-hcd.c +++ b/drivers/usb/host/u132-hcd.c @@ -2245,8 +2245,7 @@ static int u132_urb_enqueue(struct usb_hcd *hcd, struct urb *urb, struct u132 *u132 = hcd_to_u132(hcd); if (irqs_disabled()) { if (__GFP_WAIT & mem_flags) { - printk(KERN_ERR "invalid context for function that migh" - "t sleep\n"); + printk(KERN_ERR "invalid context for function that might sleep\n"); return -EINVAL; } } |