summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJagannadha Sutradharudu Teki <jaganna@xilinx.com>2013-09-26 16:00:15 +0530
committerJagannadha Sutradharudu Teki <jaganna@xilinx.com>2013-10-07 17:55:50 +0530
commit898e76c938eb169fd19733d4e4c44ba26c6dbd87 (patch)
tree68c3ccdd09b3e215347e62a59eb5fda909bdaad1 /drivers
parent1b1bd9a7b3d6ac65fc73cd05dc7cb013e453e14b (diff)
downloadblackbird-obmc-uboot-898e76c938eb169fd19733d4e4c44ba26c6dbd87.tar.gz
blackbird-obmc-uboot-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>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/mtd/spi/Makefile4
-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 0fa867db4c..86ffc59d03 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 ddbdda0dc2..ddbdda0dc2 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 29a14f4df6..29a14f4df6 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 882c8f5f5c..c009af5c20 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 e9fd013234..8f56c63bf1 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;
OpenPOWER on IntegriCloud