9
0
Fork 0

net: tap: fix whitespaces

Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Antony Pavlov 2015-12-03 10:03:49 +03:00 committed by Sascha Hauer
parent c2fed64666
commit 40d3331a3b
1 changed files with 4 additions and 3 deletions

View File

@ -99,14 +99,15 @@ static int tap_probe(struct device_d *dev)
eth_register(edev);
return 0;
return 0;
out:
free(priv);
return ret;
}
static struct driver_d tap_driver = {
.name = "tap",
.probe = tap_probe,
.name = "tap",
.probe = tap_probe,
};
device_platform_driver(tap_driver);