net: wan: add spaces required around that ':' and '+'
This patch adds spaces required around that ':' and '+'. 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:
Родитель
2aea27bae8
Коммит
30cbb0107e
|
@ -195,7 +195,8 @@ static int n2_open(struct net_device *dev)
|
|||
{
|
||||
port_t *port = dev_to_port(dev);
|
||||
int io = port->card->io;
|
||||
u8 mcr = inb(io + N2_MCR) | (port->phy_node ? TX422_PORT1:TX422_PORT0);
|
||||
u8 mcr = inb(io + N2_MCR) |
|
||||
(port->phy_node ? TX422_PORT1 : TX422_PORT0);
|
||||
int result;
|
||||
|
||||
result = hdlc_open(dev);
|
||||
|
@ -216,7 +217,8 @@ static int n2_close(struct net_device *dev)
|
|||
{
|
||||
port_t *port = dev_to_port(dev);
|
||||
int io = port->card->io;
|
||||
u8 mcr = inb(io+N2_MCR) | (port->phy_node ? TX422_PORT1 : TX422_PORT0);
|
||||
u8 mcr = inb(io + N2_MCR) |
|
||||
(port->phy_node ? TX422_PORT1 : TX422_PORT0);
|
||||
|
||||
sca_close(dev);
|
||||
mcr |= port->phy_node ? DTR_PORT1 : DTR_PORT0; /* set DTR OFF */
|
||||
|
|
Загрузка…
Ссылка в новой задаче