mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-14 08:51:46 -04:00
staging: ft1000: ft1000-pcmcia: Deleted unnecessary braces.
Brackets were removed from the expression that containing single
line in the phrase "if else". Removed following checkpatch.pl
warnings:
WARNING: braces {} are not necessary for any arm of this statement
Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
eeca3458e6
commit
057b28f5bc
@@ -1945,11 +1945,10 @@ static irqreturn_t ft1000_interrupt(int irq, void *dev_id)
|
||||
ft1000_read_reg(dev,
|
||||
FT1000_REG_MAG_DFSR);
|
||||
}
|
||||
if (tempword & 0x1f) {
|
||||
if (tempword & 0x1f)
|
||||
ft1000_copy_up_pkt(dev);
|
||||
} else {
|
||||
else
|
||||
break;
|
||||
}
|
||||
cnt++;
|
||||
} while (cnt < MAX_RCV_LOOP);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user