From: Johan Hovold Date: Tue, 4 Apr 2023 07:25:24 +0000 (+0200) Subject: USB: dwc3: clean up probe declarations X-Git-Tag: v6.4-rc1~118^2~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9a4d7dd1990383df8ffa09d6879cecb0534405e1;p=thirdparty%2Flinux.git USB: dwc3: clean up probe declarations Clean up the probe variable declarations by removing the stray newlines. Acked-by: Thinh Nguyen Signed-off-by: Johan Hovold Link: https://lore.kernel.org/r/20230404072524.19014-12-johan+linaro@kernel.org Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c index 31dd9f21820ea..435a4ad780d8b 100644 --- a/drivers/usb/dwc3/core.c +++ b/drivers/usb/dwc3/core.c @@ -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;