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: Peng Li <lipeng321@huawei.com>
Signed-off-by: Guangbin Huang <huangguangbin2@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Peng Li 2021-06-16 15:23:41 +08:00 committed by David S. Miller
parent 6619e2b63b
commit b877320527
1 changed files with 5 additions and 5 deletions

View File

@ -1338,7 +1338,7 @@ static void cosa_kick(struct cosa_data *cosa)
udelay(100); udelay(100);
cosa_putstatus(cosa, 0); cosa_putstatus(cosa, 0);
udelay(100); udelay(100);
(void) cosa_getdata8(cosa); (void)cosa_getdata8(cosa);
udelay(100); udelay(100);
cosa_putdata8(cosa, 0); cosa_putdata8(cosa, 0);
udelay(100); udelay(100);
@ -1762,8 +1762,8 @@ static inline void tx_interrupt(struct cosa_data *cosa, int status)
| (cosa->txsize & 0x1fff)); | (cosa->txsize & 0x1fff));
#ifdef DEBUG_IO #ifdef DEBUG_IO
debug_status_out(cosa, SR_TX_INT_ENA); debug_status_out(cosa, SR_TX_INT_ENA);
debug_data_out(cosa, ((cosa->txchan << 13) & 0xe000) debug_data_out(cosa, ((cosa->txchan << 13) & 0xe000) |
| (cosa->txsize & 0x1fff)); (cosa->txsize & 0x1fff));
debug_data_in(cosa, cosa_getdata8(cosa)); debug_data_in(cosa, cosa_getdata8(cosa));
debug_status_out(cosa, 0); debug_status_out(cosa, 0);
#else #else