pci200syn.c (9a64e8e0ace51b309fdcff4b4754b3649250382a) | pci200syn.c (aeea6bbfa3f185dcd6f812ece8bed778ec0da3be) |
---|---|
1/* 2 * Goramo PCI200SYN synchronous serial card driver for Linux 3 * 4 * Copyright (C) 2002-2008 Krzysztof Halasa <khc@pm.waw.pl> 5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms of version 2 of the GNU General Public License 8 * as published by the Free Software Foundation. --- 262 unchanged lines hidden (view full) --- 271static const struct net_device_ops pci200_ops = { 272 .ndo_open = pci200_open, 273 .ndo_stop = pci200_close, 274 .ndo_change_mtu = hdlc_change_mtu, 275 .ndo_start_xmit = hdlc_start_xmit, 276 .ndo_do_ioctl = pci200_ioctl, 277}; 278 | 1/* 2 * Goramo PCI200SYN synchronous serial card driver for Linux 3 * 4 * Copyright (C) 2002-2008 Krzysztof Halasa <khc@pm.waw.pl> 5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms of version 2 of the GNU General Public License 8 * as published by the Free Software Foundation. --- 262 unchanged lines hidden (view full) --- 271static const struct net_device_ops pci200_ops = { 272 .ndo_open = pci200_open, 273 .ndo_stop = pci200_close, 274 .ndo_change_mtu = hdlc_change_mtu, 275 .ndo_start_xmit = hdlc_start_xmit, 276 .ndo_do_ioctl = pci200_ioctl, 277}; 278 |
279static int __devinit pci200_pci_init_one(struct pci_dev *pdev, | 279static int pci200_pci_init_one(struct pci_dev *pdev, |
280 const struct pci_device_id *ent) 281{ 282 card_t *card; 283 u32 __iomem *p; 284 int i; 285 u32 ramsize; 286 u32 ramphys; /* buffer memory base */ 287 u32 scaphys; /* SCA memory base */ --- 169 unchanged lines hidden --- | 280 const struct pci_device_id *ent) 281{ 282 card_t *card; 283 u32 __iomem *p; 284 int i; 285 u32 ramsize; 286 u32 ramphys; /* buffer memory base */ 287 u32 scaphys; /* SCA memory base */ --- 169 unchanged lines hidden --- |