mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-31 03:21:27 +02:00
This reverts commit 1fdf53ace13f745fe8ad4d2d4e79eed98088d555, reversing changes made to e5aef1bbf11412eebd4c242b46adff5301353c30. I had missed that this caused too much size growth on rcar3_salvator-x. Signed-off-by: Tom Rini <trini@konsulko.com>
35 lines
537 B
C
35 lines
537 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (c) 2013 Google, Inc
|
|
*/
|
|
|
|
#ifdef USE_HOSTCC
|
|
#include <arpa/inet.h>
|
|
#endif
|
|
#include <u-boot/crc.h>
|
|
|
|
#define POLY (0x1070U << 3)
|
|
|
|
static unsigned char _crc8(unsigned short data)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < 8; i++) {
|
|
if (data & 0x8000)
|
|
data = data ^ POLY;
|
|
data = data << 1;
|
|
}
|
|
|
|
return (unsigned char)(data >> 8);
|
|
}
|
|
|
|
unsigned int crc8(unsigned int crc, const unsigned char *vptr, int len)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < len; i++)
|
|
crc = _crc8((crc ^ vptr[i]) << 8);
|
|
|
|
return crc;
|
|
}
|