diff options
| author | Tom Rini <[email protected]> | 2024-12-12 16:35:47 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-12-12 16:35:47 -0600 |
| commit | 1fdf53ace13f745fe8ad4d2d4e79eed98088d555 (patch) | |
| tree | 94f48a0eb15db6ce3da3953ae4e6d98623d6edae /include/u-boot | |
| parent | e5aef1bbf11412eebd4c242b46adff5301353c30 (diff) | |
| parent | f0315babfb43c6d1f5d4ff0ea7554ec2c27bf7b1 (diff) | |
Merge patch series "vbe: Series part E"
Simon Glass <[email protected]> says:
This includes various patches towards implementing the VBE abrec
bootmeth in U-Boot. It mostly focuses on SPL tweaks and adjusting what
fatures are available in VPL.
Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'include/u-boot')
| -rw-r--r-- | include/u-boot/crc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/u-boot/crc.h b/include/u-boot/crc.h index 5174bd7ac41..b2badaf6a97 100644 --- a/include/u-boot/crc.h +++ b/include/u-boot/crc.h @@ -25,6 +25,9 @@ */ unsigned int crc8(unsigned int crc_start, const unsigned char *vptr, int len); +void crc8_wd_buf(const unsigned char *input, unsigned int len, + unsigned char output[1], unsigned int chunk_sz); + /* lib/crc16.c - 16 bit CRC with polynomial x^16 + x^15 + x^2 + 1 */ uint16_t crc16(uint16_t crc, const unsigned char *buffer, size_t len); |
