diff options
| author | 2014-09-21 13:32:32 +0300 | |
|---|---|---|
| committer | 2014-09-23 13:22:25 -0700 | |
| commit | 4a8e3076984625a3be728d9db48ec40d0a704fe6 (patch) | |
| tree | 16a8a432f10f829b432023fb6c6bd1633b5e6b95 | |
| parent | Staging: rts5208: Fix checkpatch warning: Missing blank line (diff) | |
staging: rts5208: add new line after declarations
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>
| -rw-r--r-- | drivers/staging/rts5208/general.c | 1 |
1 files changed, 1 insertions, 0 deletions
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++; |
