summaryrefslogtreecommitdiff
path: root/lib/crc8.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/crc8.c')
-rw-r--r--lib/crc8.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/crc8.c b/lib/crc8.c
index 811e19917b4..20d46d16147 100644
--- a/lib/crc8.c
+++ b/lib/crc8.c
@@ -32,9 +32,3 @@ unsigned int crc8(unsigned int crc, const unsigned char *vptr, int len)
return crc;
}
-
-void crc8_wd_buf(const unsigned char *input, unsigned int len,
- unsigned char output[1], unsigned int chunk_sz)
-{
- *output = crc8(0, input, len);
-}