summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2008-08-20 13:16:03 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2008-08-20 13:16:03 +0200
commit33c488f8c13bb606a6b60df04461d56fc782574a (patch)
tree1838eb8292e7141bf4ce1e0775c1c6e90f627d88
parentad3b376c3d35ab9b6301cd43a0673c970d2bf62f (diff)
downloadbarebox-33c488f8c13bb606a6b60df04461d56fc782574a.tar.gz
barebox-33c488f8c13bb606a6b60df04461d56fc782574a.tar.xz
net: remove unused function declarations
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--include/net.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/net.h b/include/net.h
index f46e2b9abf..969aae583c 100644
--- a/include/net.h
+++ b/include/net.h
@@ -78,15 +78,7 @@ struct eth_device {
struct device_d *dev;
};
-struct param_d *eth_param_get(struct device_d* dev, int no);
-int eth_param_set(struct device_d* dev, struct param_d *param, char *val);
-
int eth_register(struct eth_device* dev);/* Register network device */
-void eth_try_another(int first_restart); /* Change the device */
-struct eth_device *eth_get_dev(void); /* get the current device MAC */
-struct eth_device *eth_get_dev_by_name(char *devname); /* get device */
-int eth_get_dev_index (void); /* get the device index */
-void eth_set_ethaddr(int num, char* a); /* Set new MAC address */
int eth_open(void); /* open the device */
int eth_send(void *packet, int length); /* Send a packet */