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>
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
#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)
{
#include <spi.h>
#include <spi_flash.h>
-#include "spi_flash_internal.h"
+#include "sf_internal.h"
DECLARE_GLOBAL_DATA_PTR;