diff options
author | Rahul Bedarkar <rahulbedarkar89@gmail.com> | 2014-01-04 03:36:31 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-01-07 19:19:31 -0500 |
commit | 486513179931649977edf24dfbde7d82e3d904b2 (patch) | |
tree | b0f48c2e410314663cb4c412a6b218887306863d | |
parent | 521aea08e3b8203a3f4211b1b6c37a4c1533e6e2 (diff) |
USB: wusbcore: fix up line break coding style issues in mmc.c
Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/wusbcore/mmc.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/drivers/usb/wusbcore/mmc.c b/drivers/usb/wusbcore/mmc.c index b71760c8d3ad..44741267c917 100644 --- a/drivers/usb/wusbcore/mmc.c +++ b/drivers/usb/wusbcore/mmc.c | |||
@@ -206,13 +206,15 @@ int wusbhc_start(struct wusbhc *wusbhc) | |||
206 | 206 | ||
207 | result = wusbhc_devconnect_start(wusbhc); | 207 | result = wusbhc_devconnect_start(wusbhc); |
208 | if (result < 0) { | 208 | if (result < 0) { |
209 | dev_err(dev, "error enabling device connections: %d\n", result); | 209 | dev_err(dev, "error enabling device connections: %d\n", |
210 | result); | ||
210 | goto error_devconnect_start; | 211 | goto error_devconnect_start; |
211 | } | 212 | } |
212 | 213 | ||
213 | result = wusbhc_sec_start(wusbhc); | 214 | result = wusbhc_sec_start(wusbhc); |
214 | if (result < 0) { | 215 | if (result < 0) { |
215 | dev_err(dev, "error starting security in the HC: %d\n", result); | 216 | dev_err(dev, "error starting security in the HC: %d\n", |
217 | result); | ||
216 | goto error_sec_start; | 218 | goto error_sec_start; |
217 | } | 219 | } |
218 | 220 | ||
@@ -284,7 +286,8 @@ int wusbhc_chid_set(struct wusbhc *wusbhc, const struct wusb_ckhdid *chid) | |||
284 | wusbhc->uwb_rc = uwb_rc_get_by_grandpa(wusbhc->dev->parent); | 286 | wusbhc->uwb_rc = uwb_rc_get_by_grandpa(wusbhc->dev->parent); |
285 | if (wusbhc->uwb_rc == NULL) { | 287 | if (wusbhc->uwb_rc == NULL) { |
286 | result = -ENODEV; | 288 | result = -ENODEV; |
287 | dev_err(wusbhc->dev, "Cannot get associated UWB Host Controller\n"); | 289 | dev_err(wusbhc->dev, |
290 | "Cannot get associated UWB Host Controller\n"); | ||
288 | goto error_rc_get; | 291 | goto error_rc_get; |
289 | } | 292 | } |
290 | 293 | ||