diff options
author | Simon Glass <sjg@chromium.org> | 2020-07-19 10:15:40 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-08-03 22:19:54 -0400 |
commit | a00867b47a4be848c400f74b97479193a41d327c (patch) | |
tree | a6d706a4659889055eb48b367643cd0dae0cbefd /arch/arm/mach-stm32mp | |
parent | 2a64ada78cba32196a4f49bd000a501fa2c96647 (diff) | |
download | u-boot-a00867b47a4be848c400f74b97479193a41d327c.tar.gz u-boot-a00867b47a4be848c400f74b97479193a41d327c.tar.xz u-boot-a00867b47a4be848c400f74b97479193a41d327c.zip |
sf: Drop dm.h header file from spi_flash.h
This header file should not be included in other header files. Remove it
and use a forward declaration instead.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/arm/mach-stm32mp')
-rw-r--r-- | arch/arm/mach-stm32mp/cmd_stm32prog/stm32prog_serial.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-stm32mp/cmd_stm32prog/stm32prog_serial.c b/arch/arm/mach-stm32mp/cmd_stm32prog/stm32prog_serial.c index 70940f01f3..8aad4be467 100644 --- a/arch/arm/mach-stm32mp/cmd_stm32prog/stm32prog_serial.c +++ b/arch/arm/mach-stm32mp/cmd_stm32prog/stm32prog_serial.c @@ -5,6 +5,7 @@ #include <common.h> #include <console.h> +#include <dm.h> #include <dfu.h> #include <malloc.h> #include <serial.h> |