mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-25 13:14:19 +08:00
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>
This commit is contained in:
parent
1b1bd9a7b3
commit
898e76c938
@ -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
|
||||
|
||||
|
@ -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)
|
||||
{
|
@ -14,7 +14,7 @@
|
||||
#include <spi.h>
|
||||
#include <spi_flash.h>
|
||||
|
||||
#include "spi_flash_internal.h"
|
||||
#include "sf_internal.h"
|
||||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
Loading…
Reference in New Issue
Block a user