Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: rtl8188eu: add blank line after declarations

Added a blank line after declarations in
drivers/staging/rtl8188eu/core/rtw_security.c to fix a
checkpatch.pl warning

Signed-off-by: Rahul Gottipati <rahul.blr97@gmail.com>
Link: https://lore.kernel.org/r/20200715163152.GA10190@rahulg-ThinkPad-T450
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Rahul Gottipati and committed by
Greg Kroah-Hartman
891a8d77 6cf26021

+1
+1
drivers/staging/rtl8188eu/core/rtw_security.c
··· 840 840 static void byte_sub(u8 *in, u8 *out) 841 841 { 842 842 int i; 843 + 843 844 for (i = 0; i < 16; i++) 844 845 out[i] = sbox(in[i]); 845 846 }