* [PATCH 1/2] net: tap: make locally used functions static
2015-12-03 7:03 [PATCH 0/2] net: tap: trivial fixes Antony Pavlov
@ 2015-12-03 7:03 ` Antony Pavlov
2015-12-03 7:03 ` [PATCH 2/2] net: tap: fix whitespaces Antony Pavlov
2015-12-04 7:13 ` [PATCH 0/2] net: tap: trivial fixes Sascha Hauer
2 siblings, 0 replies; 4+ messages in thread
From: Antony Pavlov @ 2015-12-03 7:03 UTC (permalink / raw)
To: barebox
Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
---
drivers/net/tap.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/net/tap.c b/drivers/net/tap.c
index ca53f12..dfa9bc2 100644
--- a/drivers/net/tap.c
+++ b/drivers/net/tap.c
@@ -29,7 +29,7 @@ struct tap_priv {
char *name;
};
-int tap_eth_send (struct eth_device *edev, void *packet, int length)
+static int tap_eth_send(struct eth_device *edev, void *packet, int length)
{
struct tap_priv *priv = edev->priv;
@@ -37,7 +37,7 @@ int tap_eth_send (struct eth_device *edev, void *packet, int length)
return 0;
}
-int tap_eth_rx (struct eth_device *edev)
+static int tap_eth_rx(struct eth_device *edev)
{
struct tap_priv *priv = edev->priv;
int length;
@@ -50,12 +50,12 @@ int tap_eth_rx (struct eth_device *edev)
return 0;
}
-int tap_eth_open(struct eth_device *edev)
+static int tap_eth_open(struct eth_device *edev)
{
return 0;
}
-void tap_eth_halt (struct eth_device *edev)
+static void tap_eth_halt(struct eth_device *edev)
{
/* nothing to do here */
}
@@ -70,7 +70,7 @@ static int tap_set_ethaddr(struct eth_device *edev, const unsigned char *adr)
return 0;
}
-int tap_probe(struct device_d *dev)
+static int tap_probe(struct device_d *dev)
{
struct eth_device *edev;
struct tap_priv *priv;
--
2.6.2
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 2/2] net: tap: fix whitespaces
2015-12-03 7:03 [PATCH 0/2] net: tap: trivial fixes Antony Pavlov
2015-12-03 7:03 ` [PATCH 1/2] net: tap: make locally used functions static Antony Pavlov
@ 2015-12-03 7:03 ` Antony Pavlov
2015-12-04 7:13 ` [PATCH 0/2] net: tap: trivial fixes Sascha Hauer
2 siblings, 0 replies; 4+ messages in thread
From: Antony Pavlov @ 2015-12-03 7:03 UTC (permalink / raw)
To: barebox
Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
---
drivers/net/tap.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/drivers/net/tap.c b/drivers/net/tap.c
index dfa9bc2..4277956 100644
--- a/drivers/net/tap.c
+++ b/drivers/net/tap.c
@@ -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);
--
2.6.2
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 0/2] net: tap: trivial fixes
2015-12-03 7:03 [PATCH 0/2] net: tap: trivial fixes Antony Pavlov
2015-12-03 7:03 ` [PATCH 1/2] net: tap: make locally used functions static Antony Pavlov
2015-12-03 7:03 ` [PATCH 2/2] net: tap: fix whitespaces Antony Pavlov
@ 2015-12-04 7:13 ` Sascha Hauer
2 siblings, 0 replies; 4+ messages in thread
From: Sascha Hauer @ 2015-12-04 7:13 UTC (permalink / raw)
To: Antony Pavlov; +Cc: barebox
On Thu, Dec 03, 2015 at 10:03:47AM +0300, Antony Pavlov wrote:
> Antony Pavlov (2):
> net: tap: make locally used functions static
> net: tap: fix whitespaces
>
> drivers/net/tap.c | 17 +++++++++--------
> 1 file changed, 9 insertions(+), 8 deletions(-)
Applied, thanks
Sascha
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread