diff options
author | Simon Glass <sjg@chromium.org> | 2019-11-14 12:57:14 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-02 18:23:07 -0500 |
commit | c3a4d1c3ee1f528a62e0de55ed034fa6d23c0add (patch) | |
tree | fa74607979d7d94f35241b3bf939453816662167 /board | |
parent | 840ef4d43b69a687660b3722b9c4a8a44a2912f8 (diff) | |
download | u-boot-c3a4d1c3ee1f528a62e0de55ed034fa6d23c0add.zip u-boot-c3a4d1c3ee1f528a62e0de55ed034fa6d23c0add.tar.gz u-boot-c3a4d1c3ee1f528a62e0de55ed034fa6d23c0add.tar.bz2 |
common: Drop linux/crc8.h
We have an existing U-Boot header for the one function that this defines.
Use that instead of the linux/ one. Move over the nice comment.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/theadorable/theadorable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/theadorable/theadorable.c b/board/theadorable/theadorable.c index d423503..2958d5f 100644 --- a/board/theadorable/theadorable.c +++ b/board/theadorable/theadorable.c @@ -14,11 +14,11 @@ #include <asm/io.h> #include <asm/arch/cpu.h> #include <asm/arch/soc.h> -#include <linux/crc8.h> #include <linux/mbus.h> #ifdef CONFIG_NET #include <netdev.h> #endif +#include <u-boot/crc.h> #include "theadorable.h" #include "../drivers/ddr/marvell/axp/ddr3_hw_training.h" |