diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2010-10-27 18:33:22 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-10-27 21:03:07 -0400 |
commit | fd0574cb54bf1dd068e4603f0d67d237aa1d718d (patch) | |
tree | 275437be707ebc9d34b1fb5cce1276ee8f2ced28 /drivers/gpio | |
parent | 04c17aa89380addf8d7df6f0fd269fc2bd87796c (diff) |
drivers/gpio/langwell_gpio.c: remove semicolons after function definitions
Deweird this driver.
Cc: Alek Du <alek.du@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/langwell_gpio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpio/langwell_gpio.c b/drivers/gpio/langwell_gpio.c index 8383a8d7f994..222de1292e2b 100644 --- a/drivers/gpio/langwell_gpio.c +++ b/drivers/gpio/langwell_gpio.c | |||
@@ -158,15 +158,15 @@ static int lnw_irq_type(unsigned irq, unsigned type) | |||
158 | spin_unlock_irqrestore(&lnw->lock, flags); | 158 | spin_unlock_irqrestore(&lnw->lock, flags); |
159 | 159 | ||
160 | return 0; | 160 | return 0; |
161 | }; | 161 | } |
162 | 162 | ||
163 | static void lnw_irq_unmask(unsigned irq) | 163 | static void lnw_irq_unmask(unsigned irq) |
164 | { | 164 | { |
165 | }; | 165 | } |
166 | 166 | ||
167 | static void lnw_irq_mask(unsigned irq) | 167 | static void lnw_irq_mask(unsigned irq) |
168 | { | 168 | { |
169 | }; | 169 | } |
170 | 170 | ||
171 | static struct irq_chip lnw_irqchip = { | 171 | static struct irq_chip lnw_irqchip = { |
172 | .name = "LNW-GPIO", | 172 | .name = "LNW-GPIO", |