diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2015-04-08 01:41:12 -0500 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-04-18 11:11:34 -0600 |
commit | 38ba2558748160da77e7e4d7ad55eac340d04fb9 (patch) | |
tree | 2e5dcec919639523dc13de0744f4a1eba11d65d1 /net/sntp.h | |
parent | 698d78e5457bc04f4ee3cd6985429c34615bcb59 (diff) |
net: cosmetic: Clean up SNTP variables and functions
Make a thorough pass through all variables and function names contained
within sntp.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/sntp.h')
-rw-r--r-- | net/sntp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sntp.h b/net/sntp.h index bf5bf0bb01..6a9c6bb82f 100644 --- a/net/sntp.h +++ b/net/sntp.h @@ -53,6 +53,6 @@ struct sntp_pkt_t { unsigned long long transmit_timestamp; }; -extern void SntpStart(void); /* Begin SNTP */ +void sntp_start(void); /* Begin SNTP */ #endif /* __SNTP_H__ */ |