diff options
| author | Jagannadha Sutradharudu Teki <jaganna@xilinx.com> | 2013-09-26 16:00:15 +0530 |
|---|---|---|
| committer | Jagannadha Sutradharudu Teki <jaganna@xilinx.com> | 2013-10-07 17:55:50 +0530 |
| commit | 898e76c938eb169fd19733d4e4c44ba26c6dbd87 (patch) | |
| tree | 68c3ccdd09b3e215347e62a59eb5fda909bdaad1 | |
| parent | 1b1bd9a7b3d6ac65fc73cd05dc7cb013e453e14b (diff) | |
| download | olio-uboot-2014.01-898e76c938eb169fd19733d4e4c44ba26c6dbd87.tar.xz olio-uboot-2014.01-898e76c938eb169fd19733d4e4c44ba26c6dbd87.zip | |
sf: Rename spi_flash files
Renamed:
spi_flash.c -> sf.c
spi_flash_internal.h -> sf_internal.h
spi_flash_ops.c -> sf_ops.c
spi_flash_probe.c -> sf_probe.c
Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
| -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 0fa867db4..86ffc59d0 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 ddbdda0dc..ddbdda0dc 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 29a14f4df..29a14f4df 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 882c8f5f5..c009af5c2 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 e9fd01323..8f56c63bf 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; |