mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-06 13:27:25 -04:00
staging: wilc1000: fixes missing a blank line after declarations
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>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
2d6973e6cd
commit
8739eeba4b
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user