summaryrefslogtreecommitdiffstats
path: root/drivers/usb
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2020-08-27 09:32:05 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2020-09-23 10:55:07 +0200
commit76cff1a4ae09964cd59fc26e22efda9436e325a2 (patch)
treefbd8943fe5543c66972aa7a1bbfe3693813b4525 /drivers/usb
parent1c2a23346bd1fa727837bea9be657f4b6f28d53d (diff)
downloadbarebox-76cff1a4ae09964cd59fc26e22efda9436e325a2.tar.gz
barebox-76cff1a4ae09964cd59fc26e22efda9436e325a2.tar.xz
usb: dwc3: Whitespace cleanup
Replace spaces with tabs. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/dwc3/dwc3-of-simple.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/dwc3/dwc3-of-simple.c b/drivers/usb/dwc3/dwc3-of-simple.c
index e58d9f95fe..a0aab4f114 100644
--- a/drivers/usb/dwc3/dwc3-of-simple.c
+++ b/drivers/usb/dwc3/dwc3-of-simple.c
@@ -70,7 +70,7 @@ static int dwc3_of_simple_probe(struct device_d *dev)
if (!simple)
return -ENOMEM;
- dev->priv = simple;
+ dev->priv = simple;
simple->dev = dev;
ret = dwc3_of_simple_clk_init(simple, of_count_phandle_with_args(np,
@@ -78,7 +78,7 @@ static int dwc3_of_simple_probe(struct device_d *dev)
if (ret)
return ret;
- ret = of_platform_populate(np, NULL, dev);
+ ret = of_platform_populate(np, NULL, dev);
if (ret) {
for (i = 0; i < simple->num_clocks; i++) {
clk_disable(simple->clks[i]);
@@ -87,7 +87,7 @@ static int dwc3_of_simple_probe(struct device_d *dev)
return ret;
}
- return 0;
+ return 0;
}
static void dwc3_of_simple_remove(struct device_d *dev)