summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2010-01-04 09:43:03 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2010-01-25 08:30:53 +0100
commitd2a58c21730738bba5288f905d6f33be14a62fb0 (patch)
tree09e3a891bb10e69f9259746044e0fae35c65ceaa
parent0dde20da20411bf4dcd5593601d2f36e9ba04f66 (diff)
downloadbarebox-d2a58c21730738bba5288f905d6f33be14a62fb0.tar.gz
barebox-d2a58c21730738bba5288f905d6f33be14a62fb0.tar.xz
remove unused cdp code
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--commands/net.c48
-rw-r--r--include/net.h8
2 files changed, 0 insertions, 56 deletions
diff --git a/commands/net.c b/commands/net.c
index df06227d..902c8bb0 100644
--- a/commands/net.c
+++ b/commands/net.c
@@ -210,54 +210,6 @@ out:
return rcode;
}
-#ifdef CONFIG_NET_CDP
-
-static void cdp_update_env(void)
-{
- char tmp[16];
-
- if (CDPApplianceVLAN != htons(-1)) {
- printf("CDP offered appliance VLAN %d\n", ntohs(CDPApplianceVLAN));
- VLAN_to_string(CDPApplianceVLAN, tmp);
- setenv("vlan", tmp);
- NetOurVLAN = CDPApplianceVLAN;
- }
-
- if (CDPNativeVLAN != htons(-1)) {
- printf("CDP offered native VLAN %d\n", ntohs(CDPNativeVLAN));
- VLAN_to_string(CDPNativeVLAN, tmp);
- setenv("nvlan", tmp);
- NetOurNativeVLAN = CDPNativeVLAN;
- }
-
-}
-
-static int do_cdp (cmd_tbl_t *cmdtp, int argc, char *argv[])
-{
- int r;
-
- if (NetLoopInit(CDP) < 0)
- return 1;
-
- r = NetLoop();
- if (r < 0) {
- printf("cdp failed; perhaps not a CISCO switch?\n");
- return 1;
- }
-
- cdp_update_env();
-
- return 0;
-}
-
-BAREBOX_CMD_START(cdp)
- .cmd = do_cdp,
- .usage = "Perform CDP network configuration",
- BAREBOX_CMD_HELP("[loadAddress] [host ip addr:bootfilename]\n")
-BAREBOX_CMD_END
-
-#endif /* CONFIG_NET_CDP */
-
static int do_ethact (cmd_tbl_t *cmdtp, int argc, char *argv[])
{
struct eth_device *edev;
diff --git a/include/net.h b/include/net.h
index c689a432..7353c8f5 100644
--- a/include/net.h
+++ b/include/net.h
@@ -279,10 +279,6 @@ extern uchar NetEtherNullAddr[6];
extern ushort NetOurVLAN; /* Our VLAN */
extern ushort NetOurNativeVLAN; /* Our Native VLAN */
-extern uchar NetCDPAddr[6]; /* Ethernet CDP address */
-extern ushort CDPNativeVLAN; /* CDP returned native VLAN */
-extern ushort CDPApplianceVLAN; /* CDP returned appliance VLAN */
-
extern int NetState; /* Network loop state */
/* ---------- Added by sha ------------ */
@@ -301,10 +297,6 @@ extern void ArpRequest (void);
typedef enum { BOOTP, RARP, ARP, TFTP, DHCP, PING, DNS, NFS, CDP, NETCONS, SNTP } proto_t;
-/* when CDP completes these hold the return values */
-extern ushort CDPNativeVLAN;
-extern ushort CDPApplianceVLAN;
-
/* Initialize the network adapter */
int NetLoopInit(proto_t);