summaryrefslogtreecommitdiff
path: root/include/net.h
diff options
context:
space:
mode:
authorJoe Hershberger <joe.hershberger@ni.com>2015-04-08 06:41:16 (GMT)
committerSimon Glass <sjg@chromium.org>2015-04-18 17:11:34 (GMT)
commit6a38a5f3df7be51b112bb6cb3f1f20cfe16ca196 (patch)
treed5ec52991965a9aed8c6f96c0170cf740998be44 /include/net.h
parent786eac5f9d0a9c30c2aceaededc9170a9dfb0197 (diff)
downloadu-boot-6a38a5f3df7be51b112bb6cb3f1f20cfe16ca196.tar.xz
net: cosmetic: Clean up netconsole variables and functions
Make a thorough pass through all variables and function names contained within netconsole.c and remove CamelCase and improve naming. Signed-off-by: Joe Hershberger <joe.hershberger@ni.com> Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/net.h')
-rw-r--r--include/net.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net.h b/include/net.h
index 7fe60e5..6e9d18f 100644
--- a/include/net.h
+++ b/include/net.h
@@ -640,7 +640,7 @@ int net_send_udp_packet(uchar *ether, struct in_addr dest, int dport,
void net_process_received_packet(uchar *in_packet, int len);
#ifdef CONFIG_NETCONSOLE
-void NcStart(void);
+void nc_start(void);
int nc_input_packet(uchar *pkt, struct in_addr src_ip, unsigned dest_port,
unsigned src_port, unsigned len);
#endif