diff options
| author | Tom Rini <trini@konsulko.com> | 2026-09-04 15:12:51 -0600 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2026-09-04 16:55:10 -0600 |
| commit | 7ae612085af409ba06372547ab81f9f1dbb05a62 (patch) | |
| tree | 7f2be07ba5d535f502a3dff41c0d31fa9f9ce6c7 | |
| parent | 5534f2c742916efabff3e1888912dafc570f20f2 (diff) | |
| download | u-boot-7ae612085af409ba06372547ab81f9f1dbb05a62.tar.gz u-boot-7ae612085af409ba06372547ab81f9f1dbb05a62.zip | |
board: tqma6ul: Add missing include
This file requires <asm/arch/imx-regs.h> to know what IOMUXC_BASE_ADDR
is, and had been getting this via an indirect include path. Correct
this, so we can fix other bugs which happen to expose this indirect
inclusion.
Signed-off-by: Tom Rini <trini@konsulko.com>
| -rw-r--r-- | board/tq/tqma6ul/tqma6ul_mba6ul.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/tq/tqma6ul/tqma6ul_mba6ul.c b/board/tq/tqma6ul/tqma6ul_mba6ul.c index be78060cbda..7c10b7a1d3b 100644 --- a/board/tq/tqma6ul/tqma6ul_mba6ul.c +++ b/board/tq/tqma6ul/tqma6ul_mba6ul.c @@ -8,6 +8,7 @@ #include <env.h> #include <malloc.h> #include <asm/arch/clock.h> +#include <asm/arch/imx-regs.h> #include <asm/arch/iomux.h> #include <asm/arch/mx6-pins.h> #include <asm/mach-imx/sys_proto.h> |
