Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Rahul Bedarkar and committed by
Greg Kroah-Hartman
48651317 521aea08

+6 -3
+6 -3
drivers/usb/wusbcore/mmc.c
··· 206 206 207 207 result = wusbhc_devconnect_start(wusbhc); 208 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 211 goto error_devconnect_start; 211 212 } 212 213 213 214 result = wusbhc_sec_start(wusbhc); 214 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 218 goto error_sec_start; 217 219 } 218 220 ··· 286 284 wusbhc->uwb_rc = uwb_rc_get_by_grandpa(wusbhc->dev->parent); 287 285 if (wusbhc->uwb_rc == NULL) { 288 286 result = -ENODEV; 289 - dev_err(wusbhc->dev, "Cannot get associated UWB Host Controller\n"); 287 + dev_err(wusbhc->dev, 288 + "Cannot get associated UWB Host Controller\n"); 290 289 goto error_rc_get; 291 290 } 292 291