diff options
| author | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-23 07:57:59 +0000 | 
|---|---|---|
| committer | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-23 14:19:22 -0500 | 
| commit | f575ae1f7d3940efbfc43e4236adb4a8ec1db632 (patch) | |
| tree | c938134ea39543f6919396f0d9641a18d2530574 /include | |
| parent | eafc8db0e35275330f43a4cf7b7ae8aba71c9728 (diff) | |
| download | olio-uboot-2014.01-f575ae1f7d3940efbfc43e4236adb4a8ec1db632.tar.xz olio-uboot-2014.01-f575ae1f7d3940efbfc43e4236adb4a8ec1db632.zip | |
net: Move CDP out of net.c
Separate this functionality out of the net.c behemoth
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/net.h | 8 | 
1 files changed, 3 insertions, 5 deletions
| diff --git a/include/net.h b/include/net.h index 92afc1903..8a5b09f25 100644 --- a/include/net.h +++ b/include/net.h @@ -356,9 +356,7 @@ 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 const uchar	NetCDPAddr[6];		/* Ethernet CDP address */  extern int		NetState;		/* Network loop state */  #define NETLOOP_CONTINUE	1 @@ -387,8 +385,8 @@ extern IPaddr_t	NetPingIP;			/* the ip address to ping */  #if defined(CONFIG_CMD_CDP)  /* when CDP completes these hold the return values */ -extern ushort CDPNativeVLAN; -extern ushort CDPApplianceVLAN; +extern ushort CDPNativeVLAN;		/* CDP returned native VLAN */ +extern ushort CDPApplianceVLAN;		/* CDP returned appliance VLAN */  #endif  #if defined(CONFIG_CMD_SNTP) |