From 4a8e3076984625a3be728d9db48ec40d0a704fe6 Mon Sep 17 00:00:00 2001 From: Roxana Blaj Date: Sun, 21 Sep 2014 13:32:32 +0300 Subject: [PATCH] staging: rts5208: add new line after declarations This fixes the warning: WARNING: Missing a blank line after declarations Signed-off-by: Roxana Blaj Acked-by: Daniel Baluta Signed-off-by: Greg Kroah-Hartman --- drivers/staging/rts5208/general.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/staging/rts5208/general.c b/drivers/staging/rts5208/general.c index eada934288b2..79d245877264 100644 --- a/drivers/staging/rts5208/general.c +++ b/drivers/staging/rts5208/general.c @@ -25,6 +25,7 @@ int bit1cnt_long(u32 data) { int i, cnt = 0; + for (i = 0; i < 32; i++) { if (data & 0x01) cnt++; -- 2.34.1