Deleted Added
full compact
acpi_pci.c (193530) acpi_pci.c (199337)
1/*-
2 * Copyright (c) 1997, Stefan Esser <se@freebsd.org>
3 * Copyright (c) 2000, Michael Smith <msmith@freebsd.org>
4 * Copyright (c) 2000, BSDi
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1997, Stefan Esser <se@freebsd.org>
3 * Copyright (c) 2000, Michael Smith <msmith@freebsd.org>
4 * Copyright (c) 2000, BSDi
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD: head/sys/dev/acpica/acpi_pci.c 193530 2009-06-05 18:44:36Z jkim $");
30__FBSDID("$FreeBSD: head/sys/dev/acpica/acpi_pci.c 199337 2009-11-16 21:47:12Z jkim $");
31
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/bus.h>
35#include <sys/kernel.h>
36#include <sys/malloc.h>
37#include <sys/module.h>
38

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

309 * the ACPI namespace as immediate descendants of the bridge.
310 *
311 * XXX: Sometimes PCI devices show up in the ACPI namespace that
312 * pci_add_children() doesn't find. We currently just ignore
313 * these devices.
314 */
315 pci_add_children(dev, domain, busno, sizeof(struct acpi_pci_devinfo));
316 AcpiWalkNamespace(ACPI_TYPE_DEVICE, acpi_get_handle(dev), 1,
31
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/bus.h>
35#include <sys/kernel.h>
36#include <sys/malloc.h>
37#include <sys/module.h>
38

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

309 * the ACPI namespace as immediate descendants of the bridge.
310 *
311 * XXX: Sometimes PCI devices show up in the ACPI namespace that
312 * pci_add_children() doesn't find. We currently just ignore
313 * these devices.
314 */
315 pci_add_children(dev, domain, busno, sizeof(struct acpi_pci_devinfo));
316 AcpiWalkNamespace(ACPI_TYPE_DEVICE, acpi_get_handle(dev), 1,
317 acpi_pci_save_handle, dev, NULL);
317 acpi_pci_save_handle, NULL, dev, NULL);
318
319 return (bus_generic_attach(dev));
320}
318
319 return (bus_generic_attach(dev));
320}