diff options
author | Tom Rini <trini@konsulko.com> | 2023-11-01 12:28:18 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-11-07 14:50:52 -0500 |
commit | 678be88bbe5c808bc5c00e86a133ce5dec101517 (patch) | |
tree | 319c1b6a187af94f899bf9611a4775fcd25072e9 /include/fsl-mc | |
parent | 43f85421932181ec251b6f230c79b22bc7fb8b01 (diff) | |
download | u-boot-678be88bbe5c808bc5c00e86a133ce5dec101517.tar.gz u-boot-678be88bbe5c808bc5c00e86a133ce5dec101517.tar.bz2 u-boot-678be88bbe5c808bc5c00e86a133ce5dec101517.zip |
fsl-mc: Add prototype for bd_info
As the functions fsl_mc_ldpaa_init/fsl_mc_ldpaa_exit take a bd_info as
an argument, add a struct bd_info to this header file rather than add
<asm/u-boot.h> to the overall chain.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/fsl-mc')
-rw-r--r-- | include/fsl-mc/fsl_mc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/fsl-mc/fsl_mc.h b/include/fsl-mc/fsl_mc.h index 258738dfc8..de2bba93ec 100644 --- a/include/fsl-mc/fsl_mc.h +++ b/include/fsl-mc/fsl_mc.h @@ -10,6 +10,8 @@ #include <common.h> #include <linux/bitops.h> +struct bd_info; + #define MC_CCSR_BASE_ADDR \ ((struct mc_ccsr_registers __iomem *)0x8340000) |