Commit a657c8b4 authored by Peng Li's avatar Peng Li Committed by David S. Miller

net: pc300too: add blank line after declarations

This patch fixes the checkpatch error about missing a blank line
after declarations.
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 93f76437
...@@ -158,8 +158,8 @@ static void pc300_set_iface(port_t *port) ...@@ -158,8 +158,8 @@ static void pc300_set_iface(port_t *port)
static int pc300_open(struct net_device *dev) static int pc300_open(struct net_device *dev)
{ {
port_t *port = dev_to_port(dev); port_t *port = dev_to_port(dev);
int result = hdlc_open(dev); int result = hdlc_open(dev);
if (result) if (result)
return result; return result;
...@@ -426,6 +426,7 @@ static int pc300_pci_init_one(struct pci_dev *pdev, ...@@ -426,6 +426,7 @@ static int pc300_pci_init_one(struct pci_dev *pdev,
port_t *port = &card->ports[i]; port_t *port = &card->ports[i];
struct net_device *dev = port->netdev; struct net_device *dev = port->netdev;
hdlc_device *hdlc = dev_to_hdlc(dev); hdlc_device *hdlc = dev_to_hdlc(dev);
port->chan = i; port->chan = i;
spin_lock_init(&port->lock); spin_lock_init(&port->lock);
......
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