diff options
author | Bartosz Golaszewski <bgolaszewski@baylibre.com> | 2019-02-11 11:36:55 +0100 |
---|---|---|
committer | Sekhar Nori <nsekhar@ti.com> | 2019-02-12 08:58:40 +0100 |
commit | 08e46f18b7d04ce4892c7542e89c2de4ae359987 (patch) | |
tree | 90d0d78df679f172deea0191a4b17453952b15a3 /drivers/usb/host/ohci-da8xx.c | |
parent | ARM: davinci: da850-evm: use GPIO hogs instead of the legacy API (diff) | |
download | linux-08e46f18b7d04ce4892c7542e89c2de4ae359987.tar.xz linux-08e46f18b7d04ce4892c7542e89c2de4ae359987.zip |
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>
Diffstat (limited to 'drivers/usb/host/ohci-da8xx.c')
-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) |