summaryrefslogtreecommitdiffstats
path: root/drivers/staging/ft1000
diff options
context:
space:
mode:
authorDevendra Naga <devendra.aaru@gmail.com>2012-07-07 17:35:12 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-07-09 12:26:42 -0700
commit64cab4e27648d358842fbf16e0f0c6572458eb20 (patch)
tree353ddd9f7c60094d5112efab3f3e2024b64e0874 /drivers/staging/ft1000
parent9e76b9dfa383894d4807947bed282f024b519565 (diff)
downloadop-kernel-dev-64cab4e27648d358842fbf16e0f0c6572458eb20.zip
op-kernel-dev-64cab4e27648d358842fbf16e0f0c6572458eb20.tar.gz
staging/ft1000: fix the no brace needed warning in ft1000_interrupt
as the if statement encloses only one line braces around it are not needed. The following warn fixed, WARNING: braces {} are not necessary for single statement blocks Signed-off-by: Devendra Naga <devendra.aaru@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/ft1000')
-rw-r--r--drivers/staging/ft1000/ft1000-pcmcia/ft1000_hw.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/staging/ft1000/ft1000-pcmcia/ft1000_hw.c b/drivers/staging/ft1000/ft1000-pcmcia/ft1000_hw.c
index c4a8a0a..0bd080c 100644
--- a/drivers/staging/ft1000/ft1000-pcmcia/ft1000_hw.c
+++ b/drivers/staging/ft1000/ft1000-pcmcia/ft1000_hw.c
@@ -1998,9 +1998,8 @@ static irqreturn_t ft1000_interrupt(int irq, void *dev_id)
// Make sure we process all interrupt before leaving the ISR due to the edge trigger interrupt type
while (inttype) {
- if (inttype & ISR_DOORBELL_PEND) {
- ft1000_parse_dpram_msg(dev);
- }
+ if (inttype & ISR_DOORBELL_PEND)
+ ft1000_parse_dpram_msg(dev);
if (inttype & ISR_RCV) {
DEBUG(1, "Data in FIFO\n");
OpenPOWER on IntegriCloud