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>
This commit is contained in:
parent
2a64ada78c
commit
a00867b47a
@ -7,6 +7,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
|
#include <dm.h>
|
||||||
#include <image.h>
|
#include <image.h>
|
||||||
#include <log.h>
|
#include <log.h>
|
||||||
#include <spl.h>
|
#include <spl.h>
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
#include <console.h>
|
#include <console.h>
|
||||||
|
#include <dm.h>
|
||||||
#include <dfu.h>
|
#include <dfu.h>
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
#include <serial.h>
|
#include <serial.h>
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
|
#include <dm.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <fdtdec.h>
|
#include <fdtdec.h>
|
||||||
#include <init.h>
|
#include <init.h>
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
#include <blk.h>
|
#include <blk.h>
|
||||||
|
#include <dm.h>
|
||||||
#include <dfu.h>
|
#include <dfu.h>
|
||||||
#include <env.h>
|
#include <env.h>
|
||||||
#include <memalign.h>
|
#include <memalign.h>
|
||||||
|
@ -9,10 +9,11 @@
|
|||||||
#ifndef _SPI_FLASH_H_
|
#ifndef _SPI_FLASH_H_
|
||||||
#define _SPI_FLASH_H_
|
#define _SPI_FLASH_H_
|
||||||
|
|
||||||
#include <dm.h> /* Because we dereference struct udevice here */
|
|
||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
#include <linux/mtd/spi-nor.h>
|
#include <linux/mtd/spi-nor.h>
|
||||||
|
|
||||||
|
struct udevice;
|
||||||
|
|
||||||
/* by default ENV use the same parameters than SF command */
|
/* by default ENV use the same parameters than SF command */
|
||||||
#ifndef CONFIG_ENV_SPI_BUS
|
#ifndef CONFIG_ENV_SPI_BUS
|
||||||
# define CONFIG_ENV_SPI_BUS CONFIG_SF_DEFAULT_BUS
|
# define CONFIG_ENV_SPI_BUS CONFIG_SF_DEFAULT_BUS
|
||||||
|
Loading…
Reference in New Issue
Block a user