diff options
author | Joe Perches <joe@perches.com> | 2013-07-16 22:25:59 -0400 |
---|---|---|
committer | Sarah Sharp <sarah.a.sharp@linux.intel.com> | 2013-07-23 17:50:29 -0400 |
commit | 03e64e967180181510de06eecae3be44e648b692 (patch) | |
tree | cb22b730606dc09051ba3db4df240433f95a4deb /drivers/usb/host/xhci.c | |
parent | 26b76798e0507429506b93cd49f8c4cfdab06896 (diff) |
xhci: Correct misplaced newlines
Logging messages end in newlines, not have
them put in the middle of messages.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Diffstat (limited to 'drivers/usb/host/xhci.c')
-rw-r--r-- | drivers/usb/host/xhci.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c index 2c49f00260ca..87b5e6581359 100644 --- a/drivers/usb/host/xhci.c +++ b/drivers/usb/host/xhci.c | |||
@@ -3075,8 +3075,8 @@ static u32 xhci_calculate_no_streams_bitmask(struct xhci_hcd *xhci, | |||
3075 | /* Are streams already being freed for the endpoint? */ | 3075 | /* Are streams already being freed for the endpoint? */ |
3076 | if (ep_state & EP_GETTING_NO_STREAMS) { | 3076 | if (ep_state & EP_GETTING_NO_STREAMS) { |
3077 | xhci_warn(xhci, "WARN Can't disable streams for " | 3077 | xhci_warn(xhci, "WARN Can't disable streams for " |
3078 | "endpoint 0x%x\n, " | 3078 | "endpoint 0x%x, " |
3079 | "streams are being disabled already.", | 3079 | "streams are being disabled already\n", |
3080 | eps[i]->desc.bEndpointAddress); | 3080 | eps[i]->desc.bEndpointAddress); |
3081 | return 0; | 3081 | return 0; |
3082 | } | 3082 | } |
@@ -3084,8 +3084,8 @@ static u32 xhci_calculate_no_streams_bitmask(struct xhci_hcd *xhci, | |||
3084 | if (!(ep_state & EP_HAS_STREAMS) && | 3084 | if (!(ep_state & EP_HAS_STREAMS) && |
3085 | !(ep_state & EP_GETTING_STREAMS)) { | 3085 | !(ep_state & EP_GETTING_STREAMS)) { |
3086 | xhci_warn(xhci, "WARN Can't disable streams for " | 3086 | xhci_warn(xhci, "WARN Can't disable streams for " |
3087 | "endpoint 0x%x\n, " | 3087 | "endpoint 0x%x, " |
3088 | "streams are already disabled!", | 3088 | "streams are already disabled!\n", |
3089 | eps[i]->desc.bEndpointAddress); | 3089 | eps[i]->desc.bEndpointAddress); |
3090 | xhci_warn(xhci, "WARN xhci_free_streams() called " | 3090 | xhci_warn(xhci, "WARN xhci_free_streams() called " |
3091 | "with non-streams endpoint\n"); | 3091 | "with non-streams endpoint\n"); |
@@ -4353,7 +4353,7 @@ static u16 xhci_get_timeout_no_hub_lpm(struct usb_device *udev, | |||
4353 | state_name, sel); | 4353 | state_name, sel); |
4354 | else | 4354 | else |
4355 | dev_dbg(&udev->dev, "Device-initiated %s disabled " | 4355 | dev_dbg(&udev->dev, "Device-initiated %s disabled " |
4356 | "due to long PEL %llu\n ms", | 4356 | "due to long PEL %llu ms\n", |
4357 | state_name, pel); | 4357 | state_name, pel); |
4358 | return USB3_LPM_DISABLED; | 4358 | return USB3_LPM_DISABLED; |
4359 | } | 4359 | } |