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

staging:bcm:Transmit.c:coding style:line over 80 char

Signed-off-by: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Sudip Mukherjee and committed by
Greg Kroah-Hartman
c837c549 e20487e5

+7 -3
+7 -3
drivers/staging/bcm/Transmit.c
··· 89 89 * to the target via the host h/w interface. 90 90 * @return zero(success) or -ve value(failure) 91 91 */ 92 - int SetupNextSend(struct bcm_mini_adapter *Adapter, struct sk_buff *Packet, USHORT Vcid) 92 + int SetupNextSend(struct bcm_mini_adapter *Adapter, 93 + struct sk_buff *Packet, USHORT Vcid) 93 94 { 94 95 int status = 0; 95 96 bool bHeaderSupressionEnabled = false; ··· 206 205 int status = 0; 207 206 208 207 while (!kthread_should_stop()) { 209 - /* FIXME - the timeout looks like workaround for racey usage of TxPktAvail */ 208 + /* FIXME - the timeout looks like workaround 209 + * for racey usage of TxPktAvail 210 + */ 210 211 if (Adapter->LinkUpStatus) 211 212 wait_event_timeout(Adapter->tx_packet_wait_queue, 212 213 tx_pending(Adapter), ··· 232 229 if (Adapter->bEndPointHalted == TRUE) { 233 230 Bcm_clear_halt_of_endpoints(Adapter); 234 231 Adapter->bEndPointHalted = false; 235 - StartInterruptUrb((struct bcm_interface_adapter *)(Adapter->pvInterfaceAdapter)); 232 + StartInterruptUrb((struct bcm_interface_adapter *) 233 + (Adapter->pvInterfaceAdapter)); 236 234 } 237 235 238 236 if (Adapter->LinkUpStatus && !Adapter->IdleMode) {