xref: /rk3399_rockchip-uboot/net/cdp.h (revision f575ae1f7d3940efbfc43e4236adb4a8ec1db632)
1 /*
2  *	Copied from Linux Monitor (LiMon) - Networking.
3  *
4  *	Copyright 1994 - 2000 Neil Russell.
5  *	(See License)
6  *	Copyright 2000 Roland Borde
7  *	Copyright 2000 Paolo Scaffardi
8  *	Copyright 2000-2002 Wolfgang Denk, wd@denx.de
9  */
10 
11 #if defined(CONFIG_CMD_CDP)
12 
13 #ifndef __CDP_H__
14 #define __CDP_H__
15 
16 void CDPStart(void);
17 void CDPHandler(const uchar *pkt, unsigned len);
18 
19 #endif /* __CDP_H__ */
20 #endif
21