diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mtd/spi/Makefile | 4 | ||||
-rw-r--r-- | drivers/mtd/spi/sf.c (renamed from drivers/mtd/spi/spi_flash.c) | 0 | ||||
-rw-r--r-- | drivers/mtd/spi/sf_internal.h (renamed from drivers/mtd/spi/spi_flash_internal.h) | 0 | ||||
-rw-r--r-- | drivers/mtd/spi/sf_ops.c (renamed from drivers/mtd/spi/spi_flash_ops.c) | 2 | ||||
-rw-r--r-- | drivers/mtd/spi/sf_probe.c (renamed from drivers/mtd/spi/spi_flash_probe.c) | 2 |
5 files changed, 4 insertions, 4 deletions
diff --git a/drivers/mtd/spi/Makefile b/drivers/mtd/spi/Makefile index 0fa867d..86ffc59 100644 --- a/drivers/mtd/spi/Makefile +++ b/drivers/mtd/spi/Makefile @@ -15,9 +15,9 @@ COBJS-$(CONFIG_SPL_SPI_BOOT) += fsl_espi_spl.o endif ifdef CONFIG_CMD_SF -COBJS-y += spi_flash.o +COBJS-y += sf.o endif -COBJS-$(CONFIG_SPI_FLASH) += spi_flash_probe.o spi_flash_ops.o +COBJS-$(CONFIG_SPI_FLASH) += sf_probe.o sf_ops.o COBJS-$(CONFIG_SPI_FRAM_RAMTRON) += ramtron.o COBJS-$(CONFIG_SPI_M95XXX) += eeprom_m95xxx.o diff --git a/drivers/mtd/spi/spi_flash.c b/drivers/mtd/spi/sf.c index ddbdda0..ddbdda0 100644 --- a/drivers/mtd/spi/spi_flash.c +++ b/drivers/mtd/spi/sf.c diff --git a/drivers/mtd/spi/spi_flash_internal.h b/drivers/mtd/spi/sf_internal.h index 29a14f4..29a14f4 100644 --- a/drivers/mtd/spi/spi_flash_internal.h +++ b/drivers/mtd/spi/sf_internal.h diff --git a/drivers/mtd/spi/spi_flash_ops.c b/drivers/mtd/spi/sf_ops.c index 882c8f5..c009af5 100644 --- a/drivers/mtd/spi/spi_flash_ops.c +++ b/drivers/mtd/spi/sf_ops.c @@ -13,7 +13,7 @@ #include <spi_flash.h> #include <watchdog.h> -#include "spi_flash_internal.h" +#include "sf_internal.h" static void spi_flash_addr(u32 addr, u8 *cmd) { diff --git a/drivers/mtd/spi/spi_flash_probe.c b/drivers/mtd/spi/sf_probe.c index e9fd013..8f56c63 100644 --- a/drivers/mtd/spi/spi_flash_probe.c +++ b/drivers/mtd/spi/sf_probe.c @@ -14,7 +14,7 @@ #include <spi.h> #include <spi_flash.h> -#include "spi_flash_internal.h" +#include "sf_internal.h" DECLARE_GLOBAL_DATA_PTR; |