diff options
| author | Jagannadha Sutradharudu Teki <jaganna@xilinx.com> | 2013-07-29 22:43:57 +0530 | 
|---|---|---|
| committer | Jagannadha Sutradharudu Teki <jaganna@xilinx.com> | 2013-08-07 01:05:06 +0530 | 
| commit | 5928b9a86514753b7b12ac528b3404114774aa9a (patch) | |
| tree | 66715c41138ee6ca90899a80bf260875f75c99b9 /drivers/mtd/spi/ramtron.c | |
| parent | 402ba1e3a0a6ccb100f84502f36774d6d4c3cec3 (diff) | |
| download | olio-uboot-2014.01-5928b9a86514753b7b12ac528b3404114774aa9a.tar.xz olio-uboot-2014.01-5928b9a86514753b7b12ac528b3404114774aa9a.zip | |
sf: Fix code cleanups
- CHECK: Alignment should match open parenthesis
- trailing whitespace
Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
Diffstat (limited to 'drivers/mtd/spi/ramtron.c')
| -rw-r--r-- | drivers/mtd/spi/ramtron.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/drivers/mtd/spi/ramtron.c b/drivers/mtd/spi/ramtron.c index 27e64115b..38f9d6916 100644 --- a/drivers/mtd/spi/ramtron.c +++ b/drivers/mtd/spi/ramtron.c @@ -266,7 +266,7 @@ struct spi_flash *spi_fram_probe_ramtron(struct spi_slave *spi, u8 *idcode)  	/* arriving here means no method has found a device we can handle */  	debug("SF/ramtron: unsupported device id0=%02x id1=%02x id2=%02x\n", -		idcode[0], idcode[1], idcode[2]); +	      idcode[0], idcode[1], idcode[2]);  	return NULL;  found: |