diff options
author | Bartosz Golaszewski <bgolaszewski@baylibre.com> | 2019-02-11 11:36:55 +0100 |
---|---|---|
committer | Sekhar Nori <nsekhar@ti.com> | 2019-02-12 13:28:40 +0530 |
commit | 08e46f18b7d04ce4892c7542e89c2de4ae359987 (patch) | |
tree | 90d0d78df679f172deea0191a4b17453952b15a3 | |
parent | ca107e35e6c365adc6802094af362308537f20c0 (diff) |
usb: ohci-da8xx: add a new line after local variables
Add a new line after local variables. This improves the coding style.
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
-rw-r--r-- | drivers/usb/host/ohci-da8xx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/host/ohci-da8xx.c b/drivers/usb/host/ohci-da8xx.c index a55cbba40a5a..c492c7e6f746 100644 --- a/drivers/usb/host/ohci-da8xx.c +++ b/drivers/usb/host/ohci-da8xx.c @@ -405,6 +405,7 @@ static int ohci_da8xx_probe(struct platform_device *pdev) struct usb_hcd *hcd; struct resource *mem; int error, irq; + hcd = usb_create_hcd(&ohci_da8xx_hc_driver, &pdev->dev, dev_name(&pdev->dev)); if (!hcd) |