diff options
| author | Jagannadha Sutradharudu Teki <jaganna@xilinx.com> | 2014-01-12 21:38:21 +0530 | 
|---|---|---|
| committer | Jagannadha Sutradharudu Teki <jaganna@xilinx.com> | 2014-01-12 21:38:21 +0530 | 
| commit | 2ba863fae628bb5fe2ec4b803f639c1edb55ea33 (patch) | |
| tree | 76db8fc3bc04aad7a0bb92143f5e4315d5aa6459 /drivers/mtd/spi/sf_ops.c | |
| parent | 9f4322fd2281d9736b9fd208a5e2ecaec49e21e0 (diff) | |
| download | olio-uboot-2014.01-2ba863fae628bb5fe2ec4b803f639c1edb55ea33.tar.xz olio-uboot-2014.01-2ba863fae628bb5fe2ec4b803f639c1edb55ea33.zip | |
sf: Code cleanups
- comment typo's
- func args have a proper names
Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
Diffstat (limited to 'drivers/mtd/spi/sf_ops.c')
| -rw-r--r-- | drivers/mtd/spi/sf_ops.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/drivers/mtd/spi/sf_ops.c b/drivers/mtd/spi/sf_ops.c index 28527fa82..bc4a822fb 100644 --- a/drivers/mtd/spi/sf_ops.c +++ b/drivers/mtd/spi/sf_ops.c @@ -39,13 +39,13 @@ int spi_flash_cmd_read_status(struct spi_flash *flash, u8 *rs)  	return 0;  } -int spi_flash_cmd_write_status(struct spi_flash *flash, u8 sr) +int spi_flash_cmd_write_status(struct spi_flash *flash, u8 ws)  {  	u8 cmd;  	int ret;  	cmd = CMD_WRITE_STATUS; -	ret = spi_flash_write_common(flash, &cmd, 1, &sr, 1); +	ret = spi_flash_write_common(flash, &cmd, 1, &ws, 1);  	if (ret < 0) {  		debug("SF: fail to write status register\n");  		return ret; @@ -279,7 +279,7 @@ int spi_flash_cmd_write_ops(struct spi_flash *flash, u32 offset,  		spi_flash_addr(offset, cmd); -		debug("PP: 0x%p => cmd = { 0x%02x 0x%02x%02x%02x } chunk_len = %zu\n", +		debug("SF: 0x%p => cmd = { 0x%02x 0x%02x%02x%02x } chunk_len = %zu\n",  		      buf + actual, cmd[0], cmd[1], cmd[2], cmd[3], chunk_len);  		ret = spi_flash_write_common(flash, cmd, sizeof(cmd), |