Merge branch 'next'
[u-boot/qq2440-u-boot.git] / net / cdp.h
blobec7315af7979b9c143fc791d03315a3f9c694b91
1 /*
2 * Copied from Linux Monitor (LiMon) - Networking.
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 */
11 #if defined(CONFIG_CMD_CDP)
13 #ifndef __CDP_H__
14 #define __CDP_H__
16 void CDPStart(void);
17 /* Process a received CDP packet */
18 void cdp_receive(const uchar *pkt, unsigned len);
20 #endif /* __CDP_H__ */
21 #endif