Commit b8773205 authored by Peng Li's avatar Peng Li Committed by David S. Miller
Browse files

net: cosa: remove redundant spaces



According to the chackpatch.pl,
no spaces is necessary at the start of a line,
no space is necessary after a cast.

Signed-off-by: default avatarPeng Li <lipeng321@huawei.com>
Signed-off-by: default avatarGuangbin Huang <huangguangbin2@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 6619e2b6
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -1762,8 +1762,8 @@ static inline void tx_interrupt(struct cosa_data *cosa, int status)
			| (cosa->txsize & 0x1fff));
#ifdef DEBUG_IO
		debug_status_out(cosa, SR_TX_INT_ENA);
		debug_data_out(cosa, ((cosa->txchan << 13) & 0xe000)
                        | (cosa->txsize & 0x1fff));
		debug_data_out(cosa, ((cosa->txchan << 13) & 0xe000) |
			       (cosa->txsize & 0x1fff));
		debug_data_in(cosa, cosa_getdata8(cosa));
		debug_status_out(cosa, 0);
#else