pc300too.c (9a64e8e0ace51b309fdcff4b4754b3649250382a) | pc300too.c (aeea6bbfa3f185dcd6f812ece8bed778ec0da3be) |
---|---|
1/* 2 * Cyclades PC300 synchronous serial card driver for Linux 3 * 4 * Copyright (C) 2000-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. --- 283 unchanged lines hidden (view full) --- 292static const struct net_device_ops pc300_ops = { 293 .ndo_open = pc300_open, 294 .ndo_stop = pc300_close, 295 .ndo_change_mtu = hdlc_change_mtu, 296 .ndo_start_xmit = hdlc_start_xmit, 297 .ndo_do_ioctl = pc300_ioctl, 298}; 299 | 1/* 2 * Cyclades PC300 synchronous serial card driver for Linux 3 * 4 * Copyright (C) 2000-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. --- 283 unchanged lines hidden (view full) --- 292static const struct net_device_ops pc300_ops = { 293 .ndo_open = pc300_open, 294 .ndo_stop = pc300_close, 295 .ndo_change_mtu = hdlc_change_mtu, 296 .ndo_start_xmit = hdlc_start_xmit, 297 .ndo_do_ioctl = pc300_ioctl, 298}; 299 |
300static int __devinit pc300_pci_init_one(struct pci_dev *pdev, | 300static int pc300_pci_init_one(struct pci_dev *pdev, |
301 const struct pci_device_id *ent) 302{ 303 card_t *card; 304 u32 __iomem *p; 305 int i; 306 u32 ramsize; 307 u32 ramphys; /* buffer memory base */ 308 u32 scaphys; /* SCA memory base */ --- 227 unchanged lines hidden --- | 301 const struct pci_device_id *ent) 302{ 303 card_t *card; 304 u32 __iomem *p; 305 int i; 306 u32 ramsize; 307 u32 ramphys; /* buffer memory base */ 308 u32 scaphys; /* SCA memory base */ --- 227 unchanged lines hidden --- |