diff options
| author | Jagannadha Sutradharudu Teki <jaganna@xilinx.com> | 2013-10-02 19:38:49 +0530 | 
|---|---|---|
| committer | Jagannadha Sutradharudu Teki <jaganna@xilinx.com> | 2013-10-07 17:55:49 +0530 | 
| commit | a5e8199a13a61eab0a0da9217e74dacd190fcaba (patch) | |
| tree | 43fedf767c70b835afd219ec0144eedf9604d173 /drivers/mtd/spi/spi_flash_ops.c | |
| parent | 30b0ca631895b1bcaa19dfe605f347564e56d1b7 (diff) | |
| download | olio-uboot-2014.01-a5e8199a13a61eab0a0da9217e74dacd190fcaba.tar.xz olio-uboot-2014.01-a5e8199a13a61eab0a0da9217e74dacd190fcaba.zip | |
sf: spi_flash cleanups
More cleanups on spi_flash side:
- Removed unneeded comments.
- Rearranged macros in proper location.
- Rearranged func declerations
- Renamed few function names.
- Added License headers.
Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
Diffstat (limited to 'drivers/mtd/spi/spi_flash_ops.c')
| -rw-r--r-- | drivers/mtd/spi/spi_flash_ops.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/drivers/mtd/spi/spi_flash_ops.c b/drivers/mtd/spi/spi_flash_ops.c index b4e1c40fc..882c8f5f5 100644 --- a/drivers/mtd/spi/spi_flash_ops.c +++ b/drivers/mtd/spi/spi_flash_ops.c @@ -147,7 +147,7 @@ int spi_flash_write_common(struct spi_flash *flash, const u8 *cmd,  	return ret;  } -int spi_flash_cmd_erase(struct spi_flash *flash, u32 offset, size_t len) +int spi_flash_cmd_erase_ops(struct spi_flash *flash, u32 offset, size_t len)  {  	u32 erase_size;  	u8 cmd[4]; @@ -190,7 +190,7 @@ int spi_flash_cmd_erase(struct spi_flash *flash, u32 offset, size_t len)  	return ret;  } -int spi_flash_cmd_write_multi(struct spi_flash *flash, u32 offset, +int spi_flash_cmd_write_ops(struct spi_flash *flash, u32 offset,  		size_t len, const void *buf)  {  	unsigned long byte_addr, page_size; @@ -260,7 +260,7 @@ int spi_flash_read_common(struct spi_flash *flash, const u8 *cmd,  	return ret;  } -int spi_flash_cmd_read_fast(struct spi_flash *flash, u32 offset, +int spi_flash_cmd_read_ops(struct spi_flash *flash, u32 offset,  		size_t len, void *data)  {  	u8 cmd[5], bank_sel = 0; |