diff options
author | Tom Rini <trini@konsulko.com> | 2023-11-01 12:28:17 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-11-07 14:50:52 -0500 |
commit | 43f85421932181ec251b6f230c79b22bc7fb8b01 (patch) | |
tree | 47dc8b3be2523d6f3ad476b623a8fc2f4f43da2e | |
parent | 71b68b2d4111cce69fce7b3df3690a38e6e888e5 (diff) | |
download | u-boot-43f85421932181ec251b6f230c79b22bc7fb8b01.zip u-boot-43f85421932181ec251b6f230c79b22bc7fb8b01.tar.gz u-boot-43f85421932181ec251b6f230c79b22bc7fb8b01.tar.bz2 |
ls2080aqds: Add missing headers to eth_ls1088aqds.c
As we call sprintf in this file we need to include vsprintf.h in order
to get the function prototype and we need linux/string.h for strcmp.
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | board/freescale/ls2080aqds/eth.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/freescale/ls2080aqds/eth.c b/board/freescale/ls2080aqds/eth.c index 0d0d5de..048ab44 100644 --- a/board/freescale/ls2080aqds/eth.c +++ b/board/freescale/ls2080aqds/eth.c @@ -3,6 +3,8 @@ * Copyright 2015 Freescale Semiconductor, Inc. */ +#include <vsprintf.h> +#include <linux/string.h> #include <asm/io.h> #include <asm/arch/fsl_serdes.h> #include <fsl-mc/fsl_mc.h> |