Commit 2b1d4c42 authored by Stephen Brennan's avatar Stephen Brennan Committed by Greg Kroah-Hartman
Browse files

staging: rtl8192u: fix macro alignment in ieee80211



Several macros display unaligned, due to mixes of tabs and spaces. These
can be fixed by making spacing consistent, do this.

Signed-off-by: default avatarStephen Brennan <stephen@brennan.io>
Link: https://lore.kernel.org/r/20190821143540.4501-3-stephen@brennan.io


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ee16d7d3
Loading
Loading
Loading
Loading
+18 −17
Original line number Diff line number Diff line
@@ -460,7 +460,8 @@ do { if (ieee80211_debug_level & (level)) \
			printk(KERN_DEBUG "ieee80211: %s()\n", __func__);      \
			for (i = 0; i < (int)(datalen); i++) {                 \
				printk("%2x ", pdata[i]);                      \
				if ((i + 1) % 16 == 0) printk("\n");	\
				if ((i + 1) % 16 == 0)                         \
					printk("\n");                          \
			}                                                      \
			printk("\n");                                          \
		}                                                              \
+4 −4

File changed.

Contains only whitespace changes.