diff options
author | Tom Rini <trini@konsulko.com> | 2024-12-12 21:07:26 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-12-12 21:07:26 -0600 |
commit | a33185173dce550d6ecb96b7fa625bb5e2183d66 (patch) | |
tree | add17fdeadcdddc9eb7922c7c09486027812df40 /lib/crc8.c | |
parent | 1fdf53ace13f745fe8ad4d2d4e79eed98088d555 (diff) |
Revert "Merge patch series "vbe: Series part E""
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>
Diffstat (limited to 'lib/crc8.c')
-rw-r--r-- | lib/crc8.c | 6 |
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); -} |