[PATCH] drivers/staging/greybus: gpio.c - Fixed a checkpatch generated warning
From: Chase Metzger
Date: Sun Sep 25 2016 - 16:36:01 EST
Removed braces for single line if statement.
Signed-off-by: Chase Metzger <chasemetzger15@xxxxxxxxx>
---
drivers/staging/greybus/gpio.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/staging/greybus/gpio.c b/drivers/staging/greybus/gpio.c
index ea8234a..5e06e42 100644
--- a/drivers/staging/greybus/gpio.c
+++ b/drivers/staging/greybus/gpio.c
@@ -561,9 +561,8 @@ static void gb_gpio_irqchip_remove(struct gb_gpio_controller *ggc)
irq_domain_remove(ggc->irqdomain);
}
- if (ggc->irqchip) {
+ if (ggc->irqchip)
ggc->irqchip = NULL;
- }
}
/**
--
2.1.4