diff options
| author | Tom Rini <[email protected]> | 2023-11-01 12:28:16 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-11-07 14:50:52 -0500 |
| commit | 71b68b2d4111cce69fce7b3df3690a38e6e888e5 (patch) | |
| tree | bfb73e9452884f415c9780e040352bfe91a9c61c | |
| parent | 322ca743d2085e758e986c6b84fe71d7f935acea (diff) | |
ls1088a: 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 <[email protected]>
| -rw-r--r-- | board/freescale/ls1088a/eth_ls1088aqds.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/freescale/ls1088a/eth_ls1088aqds.c b/board/freescale/ls1088a/eth_ls1088aqds.c index f62f5fd2745..2fece3a1b09 100644 --- a/board/freescale/ls1088a/eth_ls1088aqds.c +++ b/board/freescale/ls1088a/eth_ls1088aqds.c @@ -3,6 +3,8 @@ * Copyright 2017 NXP */ +#include <vsprintf.h> +#include <linux/string.h> #include <asm/io.h> #include <asm/arch/fsl_serdes.h> #include <fsl-mc/fsl_mc.h> |
