Staging: ft1000: ft1000-pcmcia: Fix whitespace issues
This patch fixes the following errors and warnings identified by checkpatch.pl: WARNING: please, no spaces at the start of a line 814: FILE: ft1000_hw.c:814: tempword = ft1000_read_reg(dev, FT1000_REG_DOORBELL);$ WARNING: please, no spaces at the start of a line 815: FILE: ft1000_hw.c:815: i=0;$ ERROR: spaces required around that '=' (ctx:VxV) 815: FILE: ft1000_hw.c:815: i=0; WARNING: please, no spaces at the start of a line 816: FILE: ft1000_hw.c:816: while (tempword & FT1000_DB_DPRAM_TX) {$ ERROR: code indent should use tabs where possible 817: FILE: ft1000_hw.c:817: mdelay(10);$ WARNING: please, no spaces at the start of a line 817: FILE: ft1000_hw.c:817: mdelay(10);$ ERROR: code indent should use tabs where possible 818: FILE: ft1000_hw.c:818: i++;$ WARNING: please, no spaces at the start of a line 818: FILE: ft1000_hw.c:818: i++;$ ERROR: code indent should use tabs where possible 819: FILE: ft1000_hw.c:819: if (i==10) {$ WARNING: please, no spaces at the start of a line 819: FILE: ft1000_hw.c:819: if (i==10) {$ WARNING: suspect code indent for conditional statements (8, 12) 819: FILE: ft1000_hw.c:819: if (i==10) { spin_unlock_irqrestore(&info->dpram_lock, flags); ERROR: spaces required around that '==' (ctx:VxV) 819: FILE: ft1000_hw.c:819: if (i==10) { ERROR: code indent should use tabs where possible 820: FILE: ft1000_hw.c:820: spin_unlock_irqrestore(&info->dpram_lock, flags);$ WARNING: please, no spaces at the start of a line 820: FILE: ft1000_hw.c:820: spin_unlock_irqrestore(&info->dpram_lock, flags);$ ERROR: code indent should use tabs where possible 821: FILE: ft1000_hw.c:821: return;$ WARNING: please, no spaces at the start of a line 821: FILE: ft1000_hw.c:821: return;$ ERROR: code indent should use tabs where possible 822: FILE: ft1000_hw.c:822: }$ WARNING: please, no spaces at the start of a line 822: FILE: ft1000_hw.c:822: }$ ERROR: code indent should use tabs where possible 823: FILE: ft1000_hw.c:823: tempword = ft1000_read_reg(dev, FT1000_REG_DOORBELL);$ WARNING: please, no spaces at the start of a line 823: FILE: ft1000_hw.c:823: tempword = ft1000_read_reg(dev, FT1000_REG_DOORBELL);$ WARNING: please, no spaces at the start of a line 824: FILE: ft1000_hw.c:824: }$ Signed-off-by: Nicky Chorley <ndchorley@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
84e9cd6b5c
commit
086241e6d0
1 changed files with 12 additions and 12 deletions
|
@ -810,18 +810,18 @@ static void ft1000_send_cmd (struct net_device *dev, u16 *ptempbuffer, int size,
|
||||||
*/
|
*/
|
||||||
spin_lock_irqsave(&info->dpram_lock, flags);
|
spin_lock_irqsave(&info->dpram_lock, flags);
|
||||||
|
|
||||||
/* Make sure SLOWQ doorbell is clear */
|
/* Make sure SLOWQ doorbell is clear */
|
||||||
tempword = ft1000_read_reg(dev, FT1000_REG_DOORBELL);
|
tempword = ft1000_read_reg(dev, FT1000_REG_DOORBELL);
|
||||||
i=0;
|
i = 0;
|
||||||
while (tempword & FT1000_DB_DPRAM_TX) {
|
while (tempword & FT1000_DB_DPRAM_TX) {
|
||||||
mdelay(10);
|
mdelay(10);
|
||||||
i++;
|
i++;
|
||||||
if (i==10) {
|
if (i == 10) {
|
||||||
spin_unlock_irqrestore(&info->dpram_lock, flags);
|
spin_unlock_irqrestore(&info->dpram_lock, flags);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
tempword = ft1000_read_reg(dev, FT1000_REG_DOORBELL);
|
tempword = ft1000_read_reg(dev, FT1000_REG_DOORBELL);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (info->AsicID == ELECTRABUZZ_ID) {
|
if (info->AsicID == ELECTRABUZZ_ID) {
|
||||||
ft1000_write_reg(dev, FT1000_REG_DPRAM_ADDR,
|
ft1000_write_reg(dev, FT1000_REG_DPRAM_ADDR,
|
||||||
|
|
Loading…
Add table
Reference in a new issue