diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2015-04-08 01:41:14 -0500 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-04-18 11:11:34 -0600 |
commit | 6aede5b750e342c3293ec1d87c4dbb9376280bbe (patch) | |
tree | 8047c5b255d7a28924301394700976efc37c3641 /net/net.c | |
parent | 331db5a90f0431465c36189672b2096b9b1e37d0 (diff) |
net: cosmetic: Clean up CDP variables and functions
Make a thorough pass through all variables and function names contained
within cdp.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 'net/net.c')
-rw-r--r-- | net/net.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/net.c b/net/net.c index a1594323cdd..3c8b6083c0e 100644 --- a/net/net.c +++ b/net/net.c @@ -412,7 +412,7 @@ restart: #endif #if defined(CONFIG_CMD_CDP) case CDP: - CDPStart(); + cdp_start(); break; #endif #if defined (CONFIG_NETCONSOLE) && !(CONFIG_SPL_BUILD) |