USB: dwc3: clean up probe declarations
authorJohan Hovold <johan+linaro@kernel.org>
Tue, 4 Apr 2023 07:25:24 +0000 (09:25 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 20 Apr 2023 08:18:23 +0000 (10:18 +0200)
Clean up the probe variable declarations by removing the stray newlines.

Acked-by: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
Signed-off-by: Johan Hovold <johan+linaro@kernel.org>
Link: https://lore.kernel.org/r/20230404072524.19014-12-johan+linaro@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/dwc3/core.c

index 31dd9f2..435a4ad 100644 (file)
@@ -1766,12 +1766,10 @@ static int dwc3_probe(struct platform_device *pdev)
 {
        struct device           *dev = &pdev->dev;
        struct resource         *res, dwc_res;
+       void __iomem            *regs;
        struct dwc3             *dwc;
-
        int                     ret;
 
-       void __iomem            *regs;
-
        dwc = devm_kzalloc(dev, sizeof(*dwc), GFP_KERNEL);
        if (!dwc)
                return -ENOMEM;