staging: rts5208: add new line after declarations
authorRoxana Blaj <roxanagabriela10@gmail.com>
Sun, 21 Sep 2014 10:32:32 +0000 (13:32 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 23 Sep 2014 20:22:25 +0000 (13:22 -0700)
This fixes the warning:
WARNING: Missing a blank line after declarations

Signed-off-by: Roxana Blaj <roxanagabriela10@gmail.com>
Acked-by: Daniel Baluta <daniel.baluta@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rts5208/general.c

index eada934288b2403cbcb57c5e4b75350b6d46cd00..79d245877264f34a7dfbee610ea48bb94437643b 100644 (file)
@@ -25,6 +25,7 @@
 int bit1cnt_long(u32 data)
 {
        int i, cnt = 0;
+
        for (i = 0; i < 32; i++) {
                if (data & 0x01)
                        cnt++;