summaryrefslogtreecommitdiffstats
path: root/include/crc.h
diff options
context:
space:
mode:
authorStefan Roese <sr@denx.de>2016-03-03 09:34:13 +0100
committerTom Rini <trini@konsulko.com>2016-03-14 19:18:42 -0400
commit0299c2efb1acc61a746f2a08f84e8eea75783a01 (patch)
tree7f3da0dd3918c86d2885788589ec155d6be623e0 /include/crc.h
parentecb57f69b236a0c11a08cbe74d22be76fc72091a (diff)
downloadblackbird-obmc-uboot-0299c2efb1acc61a746f2a08f84e8eea75783a01.tar.gz
blackbird-obmc-uboot-0299c2efb1acc61a746f2a08f84e8eea75783a01.zip
include/crc.h: Remove unreferenced cyg_xxx() prototypes
These cyg_ prototypes are not referenced anywhere in current mainline U-Boot. So lets remove them. Signed-off-by: Stefan Roese <sr@denx.de> Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/crc.h')
-rw-r--r--include/crc.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/include/crc.h b/include/crc.h
index b0031b20ab..111cb4adb7 100644
--- a/include/crc.h
+++ b/include/crc.h
@@ -36,32 +36,6 @@
# endif
#endif
-/* Compute a CRC, using the POSIX 1003 definition */
-extern uint32_t
-cyg_posix_crc32(unsigned char *s, int len);
-
-/* Gary S. Brown's 32 bit CRC */
-
-extern uint32_t
-cyg_crc32(unsigned char *s, int len);
-
-/* Gary S. Brown's 32 bit CRC, but accumulate the result from a */
-/* previous CRC calculation */
-
-extern uint32_t
-cyg_crc32_accumulate(uint32_t crc, unsigned char *s, int len);
-
-/* Ethernet FCS Algorithm */
-
-extern uint32_t
-cyg_ether_crc32(unsigned char *s, int len);
-
-/* Ethernet FCS algorithm, but accumulate the result from a previous */
-/* CRC calculation. */
-
-extern uint32_t
-cyg_ether_crc32_accumulate(uint32_t crc, unsigned char *s, int len);
-
/* 16 bit CRC with polynomial x^16+x^12+x^5+1 (CRC-CCITT) */
uint16_t crc16_ccitt(uint16_t crc_start, unsigned char *s, int len);
OpenPOWER on IntegriCloud