Commit 4a8e3076 authored by Roxana Blaj's avatar Roxana Blaj Committed by Greg Kroah-Hartman
Browse files

staging: rts5208: add new line after declarations



This fixes the warning:
WARNING: Missing a blank line after declarations

Signed-off-by: default avatarRoxana Blaj <roxanagabriela10@gmail.com>
Acked-by: default avatarDaniel Baluta <daniel.baluta@intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 767c6a55
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -25,6 +25,7 @@
int bit1cnt_long(u32 data)
{
	int i, cnt = 0;

	for (i = 0; i < 32; i++) {
		if (data & 0x01)
			cnt++;