1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 08:42:12 +02:00

net: cosmetic: Rename CDPHandler to cdp_receive

This is not called as a handler, so don't name it that way

Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
Joe Hershberger
2012-05-23 07:58:13 +00:00
parent 8d353eb86d
commit 0b4c5ff4ab
3 changed files with 4 additions and 4 deletions

View File

@@ -14,7 +14,8 @@
#define __CDP_H__
void CDPStart(void);
void CDPHandler(const uchar *pkt, unsigned len);
/* Process a received CDP packet */
void cdp_receive(const uchar *pkt, unsigned len);
#endif /* __CDP_H__ */
#endif