diff options
author | Philipp Tomsich <philipp.tomsich@theobroma-systems.com> | 2018-11-25 19:22:18 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-12-08 20:18:32 -0500 |
commit | a740ee913ec8ba04cc53100440f94841648324e2 (patch) | |
tree | 5e7ce4280365bce24a5747118d1c857a560faeeb /drivers | |
parent | c49aff3e66b930aa06936afee401cf5e19377958 (diff) | |
download | u-boot-a740ee913ec8ba04cc53100440f94841648324e2.tar.gz u-boot-a740ee913ec8ba04cc53100440f94841648324e2.tar.bz2 u-boot-a740ee913ec8ba04cc53100440f94841648324e2.zip |
lib: merge CRC16-CCITT into u-boot/crc.h
This merges the CRC16-CCITT headers into u-boot/crc.h to prepare for
rolling CRC16 into the hash infrastructure. Given that CRC8, CRC32
and CRC32-C already have their prototypes in a single header file, it
seems a good idea to also include CRC16-CCITT in the same.
Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mmc/mmc_spi.c | 2 | ||||
-rw-r--r-- | drivers/net/phy/aquantia.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mmc/mmc_spi.c b/drivers/mmc/mmc_spi.c index a9d95fbd74..4f57990d9c 100644 --- a/drivers/mmc/mmc_spi.c +++ b/drivers/mmc/mmc_spi.c @@ -10,7 +10,7 @@ #include <part.h> #include <mmc.h> #include <spi.h> -#include <crc.h> +#include <u-boot/crc.h> #include <linux/crc7.h> #include <asm/byteorder.h> diff --git a/drivers/net/phy/aquantia.c b/drivers/net/phy/aquantia.c index 37749e0185..a0abb23299 100644 --- a/drivers/net/phy/aquantia.c +++ b/drivers/net/phy/aquantia.c @@ -8,7 +8,7 @@ #include <common.h> #include <dm.h> #include <phy.h> -#include <crc.h> +#include <u-boot/crc.h> #include <malloc.h> #include <asm/byteorder.h> #include <fs.h> |