Staging: unisys: channels: Missing a blank line after declarations
authorAybuke Ozdemir <aybuke.147@gmail.com>
Sun, 21 Sep 2014 18:24:00 +0000 (21:24 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 23 Sep 2014 20:33:34 +0000 (13:33 -0700)
This patch fixes these warning messages found by checkpatch.pl:
WARNING : Missing a blank line after declarations.

Signed-off-by: Aybuke Ozdemir <aybuke.147@gmail.com>
Acked-by: Daniel Baluta <daniel.baluta@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/unisys/channels/chanstub.c

index 7f36d9a..20521ce 100644 (file)
@@ -47,6 +47,7 @@ SignalInsert_withLock(CHANNEL_HEADER __iomem *pChannel, u32 Queue,
 {
        unsigned char result;
        unsigned long flags;
+
        spin_lock_irqsave(lock, flags);
        result = visor_signal_insert(pChannel, Queue, pSignal);
        spin_unlock_irqrestore(lock, flags);
@@ -58,6 +59,7 @@ SignalRemove_withLock(CHANNEL_HEADER __iomem *pChannel, u32 Queue,
                      void *pSignal, spinlock_t *lock)
 {
        unsigned char result;
+
        spin_lock(lock);
        result = visor_signal_remove(pChannel, Queue, pSignal);
        spin_unlock(lock);