Skip to content

Commit

Permalink
net: pci200syn: remove redundant blank lines
Browse files Browse the repository at this point in the history
This patch removes some redundant blank lines.

Signed-off-by: Peng Li <lipeng321@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Peng Li authored and David S. Miller committed Jun 15, 2021
1 parent 5938b22 commit bbcb284
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions drivers/net/wan/pci200syn.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,6 @@ typedef struct {
u32 init_ctrl; /* 50h : EEPROM ctrl, Init Ctrl, etc */
}plx9052;



typedef struct port_s {
struct napi_struct napi;
struct net_device *netdev;
Expand All @@ -76,8 +74,6 @@ typedef struct port_s {
u8 chan; /* physical port # - 0 or 1 */
}port_t;



typedef struct card_s {
u8 __iomem *rambase; /* buffer memory base (virtual) */
u8 __iomem *scabase; /* SCA memory base (virtual) */
Expand All @@ -90,7 +86,6 @@ typedef struct card_s {
port_t ports[2];
}card_t;


#define get_port(card, port) (&card->ports[port])
#define sca_flush(card) (sca_in(IER0, card))

Expand All @@ -112,7 +107,6 @@ static inline void new_memcpy_toio(char __iomem *dest, char *src, int length)

#include "hd64572.c"


static void pci200_set_iface(port_t *port)
{
card_t *card = port->card;
Expand Down Expand Up @@ -151,8 +145,6 @@ static void pci200_set_iface(port_t *port)
sca_set_port(port);
}



static int pci200_open(struct net_device *dev)
{
port_t *port = dev_to_port(dev);
Expand All @@ -167,8 +159,6 @@ static int pci200_open(struct net_device *dev)
return 0;
}



static int pci200_close(struct net_device *dev)
{
sca_close(dev);
Expand All @@ -177,8 +167,6 @@ static int pci200_close(struct net_device *dev)
return 0;
}



static int pci200_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
{
const size_t size = sizeof(sync_serial_settings);
Expand Down Expand Up @@ -233,8 +221,6 @@ static int pci200_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
}
}



static void pci200_pci_remove_one(struct pci_dev *pdev)
{
int i;
Expand Down Expand Up @@ -407,23 +393,19 @@ static int pci200_pci_init_one(struct pci_dev *pdev,
return 0;
}



static const struct pci_device_id pci200_pci_tbl[] = {
{ PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9050, PCI_VENDOR_ID_PLX,
PCI_DEVICE_ID_PLX_PCI200SYN, 0, 0, 0 },
{ 0, }
};


static struct pci_driver pci200_pci_driver = {
.name = "PCI200SYN",
.id_table = pci200_pci_tbl,
.probe = pci200_pci_init_one,
.remove = pci200_pci_remove_one,
};


static int __init pci200_init_module(void)
{
if (pci_clock_freq < 1000000 || pci_clock_freq > 80000000) {
Expand All @@ -433,8 +415,6 @@ static int __init pci200_init_module(void)
return pci_register_driver(&pci200_pci_driver);
}



static void __exit pci200_cleanup_module(void)
{
pci_unregister_driver(&pci200_pci_driver);
Expand Down

0 comments on commit bbcb284

Please sign in to comment.