diff options
| author | Jagannadha Sutradharudu Teki <jaganna@xilinx.com> | 2013-10-07 19:34:56 +0530 | 
|---|---|---|
| committer | Jagannadha Sutradharudu Teki <jaganna@xilinx.com> | 2013-10-07 19:34:56 +0530 | 
| commit | ce22b922dd1fdd3f6cb25660e6e845d4f1cb4f70 (patch) | |
| tree | 9b2e0f2d5b15e2c4281fe0adad942eb2a943f3de /drivers/mtd/spi/sf_internal.h | |
| parent | 2f24223ae150d9496694885cee401f4525b72acb (diff) | |
| download | olio-uboot-2014.01-ce22b922dd1fdd3f6cb25660e6e845d4f1cb4f70.tar.xz olio-uboot-2014.01-ce22b922dd1fdd3f6cb25660e6e845d4f1cb4f70.zip | |
sf: Minor cleanups
- Add spaces, tabs
- Commenting.
- Rearrange code.
- Add static qualifier for missing func.
- Remove memory_map from ramtron.c
- Ramtron: spi_flash_internal.h -> sf_internal.h
Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
Diffstat (limited to 'drivers/mtd/spi/sf_internal.h')
| -rw-r--r-- | drivers/mtd/spi/sf_internal.h | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/drivers/mtd/spi/sf_internal.h b/drivers/mtd/spi/sf_internal.h index 29a14f4df..12d02f9e4 100644 --- a/drivers/mtd/spi/sf_internal.h +++ b/drivers/mtd/spi/sf_internal.h @@ -13,7 +13,7 @@  #define SPI_FLASH_16MB_BOUN		0x1000000  /* SECT flags */ -#define SECT_4K			(1 << 1) +#define SECT_4K				(1 << 1)  #define SECT_32K			(1 << 2)  #define E_FSR				(1 << 3) @@ -29,8 +29,8 @@  #define CMD_WRITE_DISABLE		0x04  #define CMD_READ_STATUS			0x05  #define CMD_WRITE_ENABLE		0x06 -#define CMD_READ_CONFIG		0x35 -#define CMD_FLAG_STATUS		0x70 +#define CMD_READ_CONFIG			0x35 +#define CMD_FLAG_STATUS			0x70  /* Read commands */  #define CMD_READ_ARRAY_SLOW		0x03 @@ -57,7 +57,7 @@  /* SST specific */  #ifdef CONFIG_SPI_FLASH_SST  # define SST_WP			0x01	/* Supports AAI word program */ -# define CMD_SST_BP			0x02    /* Byte Program */ +# define CMD_SST_BP		0x02    /* Byte Program */  # define CMD_SST_AAI_WP		0xAD	/* Auto Address Incr Word Program */  int sst_write_wp(struct spi_flash *flash, u32 offset, size_t len, |