summaryrefslogtreecommitdiff
path: root/firmware/lib/include
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2016-10-13 16:27:45 -0700
committerchrome-bot <chrome-bot@chromium.org>2016-10-23 13:33:39 -0700
commitbf6263d52994937033b397833be836d081b61958 (patch)
treeb66ca55c4f0435f0b83d70a187e0598e45f319d1 /firmware/lib/include
parent664096bd1a7247b751bf4e564738d53a1e2795c2 (diff)
downloadvboot-bf6263d52994937033b397833be836d081b61958.tar.gz
vboot: use vb2_crc8 instead of Crc8
No need to have two implementations of this now. BUG=chromium:611535 BRANCH=none TEST=make runtests; emerge-kevin coreboot depthcharge Change-Id: Id3348eae80c5d85451981a44729164ff59f88648 Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/399121 Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org>
Diffstat (limited to 'firmware/lib/include')
-rw-r--r--firmware/lib/include/crc8.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/firmware/lib/include/crc8.h b/firmware/lib/include/crc8.h
deleted file mode 100644
index 14341440..00000000
--- a/firmware/lib/include/crc8.h
+++ /dev/null
@@ -1,13 +0,0 @@
-/* Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- *
- * Very simple 8-bit CRC function.
- */
-#ifndef VBOOT_REFERENCE_CRC8_H_
-#define VBOOT_REFERENCE_CRC8_H_
-#include "sysincludes.h"
-
-uint8_t Crc8(const void *data, int len);
-
-#endif /* VBOOT_REFERENCE_CRC8_H_ */