]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
sf: Drop dm.h header file from spi_flash.h
authorSimon Glass <sjg@chromium.org>
Sun, 19 Jul 2020 16:15:40 +0000 (10:15 -0600)
committerTom Rini <trini@konsulko.com>
Tue, 4 Aug 2020 02:19:54 +0000 (22:19 -0400)
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>
arch/arm/mach-k3/sysfw-loader.c
arch/arm/mach-stm32mp/cmd_stm32prog/stm32prog_serial.c
arch/x86/cpu/ivybridge/sdram.c
board/st/common/stm32mp_dfu.c
include/spi_flash.h

index 513be09c6878eec6fcf3915c9bd08b6fb0eb7eaf..96be069ee801747bb1adc94de849b2dd3613a02f 100644 (file)
@@ -7,6 +7,7 @@
  */
 
 #include <common.h>
+#include <dm.h>
 #include <image.h>
 #include <log.h>
 #include <spl.h>
index 70940f01f3216a6718054206477c003eef4e5218..8aad4be467e7ec93da841ac7561dd5747d3675f2 100644 (file)
@@ -5,6 +5,7 @@
 
 #include <common.h>
 #include <console.h>
+#include <dm.h>
 #include <dfu.h>
 #include <malloc.h>
 #include <serial.h>
index 99bc48021e6900fdb439fc2b1e8e04de99dfa93e..dd6b8753de6814fbf007aa399c594a433318e9f2 100644 (file)
@@ -10,6 +10,7 @@
  */
 
 #include <common.h>
+#include <dm.h>
 #include <errno.h>
 #include <fdtdec.h>
 #include <init.h>
index 0cda9196f938d058d267162681393a3ba71a07c1..38eb0f27c90cc56e5108cc4ef979a5638f114766 100644 (file)
@@ -5,6 +5,7 @@
 
 #include <common.h>
 #include <blk.h>
+#include <dm.h>
 #include <dfu.h>
 #include <env.h>
 #include <memalign.h>
index b336619487659f70beac915c2b0138b4b3e4b078..85cae32cc733e0ebaf358ae996d5041b18160fae 100644 (file)
@@ -9,10 +9,11 @@
 #ifndef _SPI_FLASH_H_
 #define _SPI_FLASH_H_
 
-#include <dm.h>        /* Because we dereference struct udevice here */
 #include <linux/types.h>
 #include <linux/mtd/spi-nor.h>
 
+struct udevice;
+
 /* by default ENV use the same parameters than SF command */
 #ifndef CONFIG_ENV_SPI_BUS
 # define CONFIG_ENV_SPI_BUS    CONFIG_SF_DEFAULT_BUS