From: Roxana Blaj Date: Sun, 21 Sep 2014 10:32:32 +0000 (+0300) Subject: staging: rts5208: add new line after declarations X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4a8e3076984625a3be728d9db48ec40d0a704fe6;p=linux-beck.git 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 --- 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++;