staging: wilc1000: fixes missing a blank line after declarations
authorLeo Kim <leo.kim@atmel.com>
Fri, 6 Nov 2015 02:12:29 +0000 (11:12 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
This patch fixes the warnings reported by checkpatch.pl
for Missing a blank line after declarations.

Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Glen Lee <glen.lee@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_wlan.c

index d3117f95bba3d9b4f9c68d48d9624ec3f1944977..7ebfcaf8daf1357292763aba873c03f14e991302 100644 (file)
@@ -81,6 +81,7 @@ static inline void release_bus(BUS_RELEASE_T release)
 static void wilc_wlan_txq_remove(struct txq_entry_t *tqe)
 {
        wilc_wlan_dev_t *p = &g_wlan;
+
        if (tqe == p->txq_head) {
                p->txq_head = tqe->next;
                if (p->txq_head)
@@ -500,6 +501,7 @@ static struct txq_entry_t *wilc_wlan_txq_get_next(struct wilc *wilc,
                                                  struct txq_entry_t *tqe)
 {
        unsigned long flags;
+
        spin_lock_irqsave(&wilc->txq_spinlock, flags);
 
        tqe = tqe->next;
This page took 0.025662 seconds and 5 git commands to generate.