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

staging: vt6655: fix coding style issues in channel.c

Observe the line length limit to make checkpatch.pl happy.

Signed-off-by: Ivan Stankovic <pokemon@fly.srk.fer.hr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Ivan Stankovic and committed by
Greg Kroah-Hartman
636cd168 d34add05

+6 -3
+6 -3
drivers/staging/vt6655/channel.c
··· 193 193 /* clear NAV */ 194 194 MACvRegBitsOn(pDevice->PortOffset, MAC_REG_MACCR, MACCR_CLRNAV); 195 195 196 - /* TX_PE will reserve 3 us for MAX2829 A mode only, it is for better TX throughput */ 196 + /* TX_PE will reserve 3 us for MAX2829 A mode only, 197 + it is for better TX throughput */ 197 198 198 199 if (pDevice->byRFType == RF_AIROHA7230) 199 200 RFbAL7230SelectChannelPostProcess(pDevice, pDevice->byCurrentCh, ··· 218 217 /* set HW default power register */ 219 218 MACvSelectPage1(pDevice->PortOffset); 220 219 RFbSetPower(pDevice, RATE_1M, pDevice->byCurrentCh); 221 - VNSvOutPortB(pDevice->PortOffset + MAC_REG_PWRCCK, pDevice->byCurPwr); 220 + VNSvOutPortB(pDevice->PortOffset + MAC_REG_PWRCCK, 221 + pDevice->byCurPwr); 222 222 RFbSetPower(pDevice, RATE_6M, pDevice->byCurrentCh); 223 - VNSvOutPortB(pDevice->PortOffset + MAC_REG_PWROFDM, pDevice->byCurPwr); 223 + VNSvOutPortB(pDevice->PortOffset + MAC_REG_PWROFDM, 224 + pDevice->byCurPwr); 224 225 MACvSelectPage0(pDevice->PortOffset); 225 226 226 227 spin_unlock_irqrestore(&pDevice->lock, flags);