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

staging: rtl8192e: Fix quoted string split across lines

Fix checkpatch.pl issues with quoted string split across lines in
dot11d.c

Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com>
Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Gulsah Kose and committed by
Greg Kroah-Hartman
91f14c85 4f4c9652

+3 -6
+3 -6
drivers/staging/rtl8192e/dot11d.c
··· 133 133 pTriple = (struct chnl_txpow_triple *)(pCoutryIe + 3); 134 134 for (i = 0; i < NumTriples; i++) { 135 135 if (MaxChnlNum >= pTriple->FirstChnl) { 136 - printk(KERN_INFO "Dot11d_UpdateCountryIe(): Invalid" 137 - " country IE, skip it........1\n"); 136 + printk(KERN_INFO "Dot11d_UpdateCountryIe(): Invalid country IE, skip it........1\n"); 138 137 return; 139 138 } 140 139 if (MAX_CHANNEL_NUMBER < (pTriple->FirstChnl + 141 140 pTriple->NumChnls)) { 142 - printk(KERN_INFO "Dot11d_UpdateCountryIe(): Invalid " 143 - "country IE, skip it........2\n"); 141 + printk(KERN_INFO "Dot11d_UpdateCountryIe(): Invalid country IE, skip it........2\n"); 144 142 return; 145 143 } 146 144 ··· 165 167 u8 MaxTxPwrInDbm = 255; 166 168 167 169 if (MAX_CHANNEL_NUMBER < Channel) { 168 - printk(KERN_INFO "DOT11D_GetMaxTxPwrInDbm(): Invalid " 169 - "Channel\n"); 170 + printk(KERN_INFO "DOT11D_GetMaxTxPwrInDbm(): Invalid Channel\n"); 170 171 return MaxTxPwrInDbm; 171 172 } 172 173 if (pDot11dInfo->channel_map[Channel])