Skip to content

Commit

Permalink
USB: wusbcore: fix up line break coding style issues in mmc.c
Browse files Browse the repository at this point in the history
Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Rahul Bedarkar authored and Greg Kroah-Hartman committed Jan 8, 2014
1 parent 521aea0 commit 4865131
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions drivers/usb/wusbcore/mmc.c
Original file line number Diff line number Diff line change
Expand Up @@ -206,13 +206,15 @@ int wusbhc_start(struct wusbhc *wusbhc)

result = wusbhc_devconnect_start(wusbhc);
if (result < 0) {
dev_err(dev, "error enabling device connections: %d\n", result);
dev_err(dev, "error enabling device connections: %d\n",
result);
goto error_devconnect_start;
}

result = wusbhc_sec_start(wusbhc);
if (result < 0) {
dev_err(dev, "error starting security in the HC: %d\n", result);
dev_err(dev, "error starting security in the HC: %d\n",
result);
goto error_sec_start;
}

Expand Down Expand Up @@ -284,7 +286,8 @@ int wusbhc_chid_set(struct wusbhc *wusbhc, const struct wusb_ckhdid *chid)
wusbhc->uwb_rc = uwb_rc_get_by_grandpa(wusbhc->dev->parent);
if (wusbhc->uwb_rc == NULL) {
result = -ENODEV;
dev_err(wusbhc->dev, "Cannot get associated UWB Host Controller\n");
dev_err(wusbhc->dev,
"Cannot get associated UWB Host Controller\n");
goto error_rc_get;
}

Expand Down

0 comments on commit 4865131

Please sign in to comment.