Commit 5bff5d9f authored by Bogicevic Sasa's avatar Bogicevic Sasa Committed by Greg Kroah-Hartman

driver:staging:dgnc Fix spaces preferred around that ...

This fixes all "spaces preferred around that ..." messages from
checkpatch.pl
Signed-off-by: default avatarBogicevic Sasa <brutallesale@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c71d2645
...@@ -1628,7 +1628,7 @@ static void neo_uart_init(struct channel_t *ch) ...@@ -1628,7 +1628,7 @@ static void neo_uart_init(struct channel_t *ch)
/* Clear out UART and FIFO */ /* Clear out UART and FIFO */
readb(&ch->ch_neo_uart->txrx); readb(&ch->ch_neo_uart->txrx);
writeb((UART_FCR_ENABLE_FIFO|UART_FCR_CLEAR_RCVR|UART_FCR_CLEAR_XMIT), &ch->ch_neo_uart->isr_fcr); writeb((UART_FCR_ENABLE_FIFO | UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT), &ch->ch_neo_uart->isr_fcr);
readb(&ch->ch_neo_uart->lsr); readb(&ch->ch_neo_uart->lsr);
readb(&ch->ch_neo_uart->msr); readb(&ch->ch_neo_uart->msr);
...@@ -1779,8 +1779,8 @@ static void neo_vpd(struct dgnc_board *brd) ...@@ -1779,8 +1779,8 @@ static void neo_vpd(struct dgnc_board *brd)
/* Store the VPD into our buffer */ /* Store the VPD into our buffer */
for (i = 0; i < NEO_VPD_IMAGESIZE; i++) { for (i = 0; i < NEO_VPD_IMAGESIZE; i++) {
a = neo_read_eeprom(brd->re_map_membase, i); a = neo_read_eeprom(brd->re_map_membase, i);
brd->vpd[i*2] = a & 0xff; brd->vpd[i * 2] = a & 0xff;
brd->vpd[(i*2)+1] = (a >> 8) & 0xff; brd->vpd[(i * 2) + 1] = (a >> 8) & 0xff;
} }
if (((brd->vpd[0x08] != 0x82) /* long resource name tag */ if (((brd->vpd[0x08] != 0x82) /* long resource name tag */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment