Deleted Added
full compact
ata-netcell.c (188765) ata-netcell.c (188769)
1/*-
2 * Copyright (c) 1998 - 2008 S�ren Schmidt <sos@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 11 unchanged lines hidden (view full) ---

20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26
27#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1998 - 2008 S�ren Schmidt <sos@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 11 unchanged lines hidden (view full) ---

20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26
27#include <sys/cdefs.h>
28__FBSDID("$FreeBSD: head/sys/dev/ata/chipsets/ata-netcell.c 188765 2009-02-18 22:17:48Z mav $");
28__FBSDID("$FreeBSD: head/sys/dev/ata/chipsets/ata-netcell.c 188769 2009-02-19 00:32:55Z mav $");
29
30#include "opt_ata.h"
31#include <sys/param.h>
32#include <sys/module.h>
33#include <sys/systm.h>
34#include <sys/kernel.h>
35#include <sys/ata.h>
36#include <sys/bus.h>

--- 40 unchanged lines hidden (view full) ---

77ata_netcell_chipinit(device_t dev)
78{
79 struct ata_pci_controller *ctlr = device_get_softc(dev);
80
81 if (ata_setup_interrupt(dev, ata_generic_intr))
82 return ENXIO;
83
84 ctlr->ch_attach = ata_netcell_ch_attach;
29
30#include "opt_ata.h"
31#include <sys/param.h>
32#include <sys/module.h>
33#include <sys/systm.h>
34#include <sys/kernel.h>
35#include <sys/ata.h>
36#include <sys/bus.h>

--- 40 unchanged lines hidden (view full) ---

77ata_netcell_chipinit(device_t dev)
78{
79 struct ata_pci_controller *ctlr = device_get_softc(dev);
80
81 if (ata_setup_interrupt(dev, ata_generic_intr))
82 return ENXIO;
83
84 ctlr->ch_attach = ata_netcell_ch_attach;
85 ctlr->ch_detach = ata_pci_ch_detach;
85 ctlr->setmode = ata_netcell_setmode;
86 return 0;
87}
88
89static int
90ata_netcell_ch_attach(device_t dev)
91{
92 struct ata_channel *ch = device_get_softc(dev);

--- 23 unchanged lines hidden ---
86 ctlr->setmode = ata_netcell_setmode;
87 return 0;
88}
89
90static int
91ata_netcell_ch_attach(device_t dev)
92{
93 struct ata_channel *ch = device_get_softc(dev);

--- 23 unchanged lines hidden ---