From 936df714ebd00e54cd1e9b23d57a8f93f0ae0871 Mon Sep 17 00:00:00 2001 From: Jett Rink Date: Wed, 11 Nov 2020 12:22:04 -0700 Subject: Revert "crc8: rename crc8 to cros_crc8 to to avoid zephyr conflict" Something slipped through CQ coverage. Need to figure out, but in the mean time, revert the 3 CLs that seemed to have caused the issue. BRANCH=none BUG=chromium:1147953 TEST=none This reverts commit befe5a9c78ff4e75db7c5cda801688c8976e95f3. Change-Id: I14e82f33646b6574b1b3da13783143e3a29d417b Signed-off-by: Jett Rink Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2533357 --- include/crc8.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'include/crc8.h') diff --git a/include/crc8.h b/include/crc8.h index 45b2322b44..e6e70e2bf3 100644 --- a/include/crc8.h +++ b/include/crc8.h @@ -16,7 +16,7 @@ * @param len int, input, size of input data in bytes * @return the crc-8 of the input data. */ -uint8_t cros_crc8(const uint8_t *data, int len); +uint8_t crc8(const uint8_t *data, int len); /** * crc8_arg @@ -25,10 +25,9 @@ uint8_t cros_crc8(const uint8_t *data, int len); * @param data uint8_t *, input, a pointer to input data * @param len int, input, size of input data in bytes * @param previous_crc uint8_t, input, pre-calculated CRC of previous data. - * Seed with zero for a new calculation (or use the result of - * cros_crc8()). + * Seed with zero for a new calculation (or use the result of crc8()). * @return the crc-8 of the input data. */ -uint8_t cros_crc8_arg(const uint8_t *data, int len, uint8_t previous_crc); +uint8_t crc8_arg(const uint8_t *data, int len, uint8_t previous_crc); #endif /* __CROS_EC_CRC8_H */ -- cgit v1.2.1