diff options
author | Philipp Tomsich | 2018-11-25 19:22:18 +0100 |
---|---|---|
committer | Tom Rini | 2018-12-08 20:18:32 -0500 |
commit | a740ee913ec8ba04cc53100440f94841648324e2 (patch) | |
tree | 5e7ce4280365bce24a5747118d1c857a560faeeb /board/armadeus | |
parent | c49aff3e66b930aa06936afee401cf5e19377958 (diff) |
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 'board/armadeus')
-rw-r--r-- | board/armadeus/apf27/apf27.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/armadeus/apf27/apf27.c b/board/armadeus/apf27/apf27.c index 0f0c8a4a97d..bf2586d326a 100644 --- a/board/armadeus/apf27/apf27.c +++ b/board/armadeus/apf27/apf27.c @@ -16,8 +16,8 @@ #include <asm/arch/gpio.h> #include <asm/gpio.h> #include <linux/errno.h> +#include <u-boot/crc.h> #include "apf27.h" -#include "crc.h" #include "fpga.h" DECLARE_GLOBAL_DATA_PTR; |