aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasanari Iida <standby24x7@gmail.com>2015-09-29 23:51:51 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-10-04 23:58:24 -0400
commitd5f9e73309b774dd9d86428edd7958b0960bcb85 (patch)
treec59085d2f9327800da86a10a45ee8b3ebf6e1d74
parent5119dd1e3f7e84073dea4d53322f2fd99f0d0d8b (diff)
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>
-rw-r--r--drivers/usb/host/u132-hcd.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/usb/host/u132-hcd.c b/drivers/usb/host/u132-hcd.c
index a67bd5090330..0a94895a358d 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,
2245 struct u132 *u132 = hcd_to_u132(hcd); 2245 struct u132 *u132 = hcd_to_u132(hcd);
2246 if (irqs_disabled()) { 2246 if (irqs_disabled()) {
2247 if (__GFP_WAIT & mem_flags) { 2247 if (__GFP_WAIT & mem_flags) {
2248 printk(KERN_ERR "invalid context for function that migh" 2248 printk(KERN_ERR "invalid context for function that might sleep\n");
2249 "t sleep\n");
2250 return -EINVAL; 2249 return -EINVAL;
2251 } 2250 }
2252 } 2251 }