Deleted Added
full compact
siis.c (227293) siis.c (227701)
1/*-
2 * Copyright (c) 2009 Alexander Motin <mav@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) 2009 Alexander Motin <mav@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/siis/siis.c 227293 2011-11-07 06:44:47Z ed $");
28__FBSDID("$FreeBSD: head/sys/dev/siis/siis.c 227701 2011-11-19 10:11:50Z hselasky $");
29
30#include <sys/param.h>
31#include <sys/module.h>
32#include <sys/systm.h>
33#include <sys/kernel.h>
34#include <sys/ata.h>
35#include <sys/bus.h>
36#include <sys/endian.h>

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

200 bus_generic_attach(dev);
201 return 0;
202}
203
204static int
205siis_detach(device_t dev)
206{
207 struct siis_controller *ctlr = device_get_softc(dev);
29
30#include <sys/param.h>
31#include <sys/module.h>
32#include <sys/systm.h>
33#include <sys/kernel.h>
34#include <sys/ata.h>
35#include <sys/bus.h>
36#include <sys/endian.h>

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

200 bus_generic_attach(dev);
201 return 0;
202}
203
204static int
205siis_detach(device_t dev)
206{
207 struct siis_controller *ctlr = device_get_softc(dev);
208 device_t *children;
209 int nchildren, i;
210
211 /* Detach & delete all children */
208
209 /* Detach & delete all children */
212 if (!device_get_children(dev, &children, &nchildren)) {
213 for (i = 0; i < nchildren; i++)
214 device_delete_child(dev, children[i]);
215 free(children, M_TEMP);
216 }
210 device_delete_all_children(dev);
211
217 /* Free interrupts. */
218 if (ctlr->irq.r_irq) {
219 bus_teardown_intr(dev, ctlr->irq.r_irq,
220 ctlr->irq.handle);
221 bus_release_resource(dev, SYS_RES_IRQ,
222 ctlr->irq.r_irq_rid, ctlr->irq.r_irq);
223 }
224 pci_release_msi(dev);

--- 1765 unchanged lines hidden ---
212 /* Free interrupts. */
213 if (ctlr->irq.r_irq) {
214 bus_teardown_intr(dev, ctlr->irq.r_irq,
215 ctlr->irq.handle);
216 bus_release_resource(dev, SYS_RES_IRQ,
217 ctlr->irq.r_irq_rid, ctlr->irq.r_irq);
218 }
219 pci_release_msi(dev);

--- 1765 unchanged lines hidden ---