acpi_pcib.c (a067d210323dd13f17b59726847cfd77b538eeb7) acpi_pcib.c (3273b0052350a01f85ee60a6a2e31adb31d4a5a6)
1/*-
2 * Copyright (c) 2000 Michael Smith
3 * Copyright (c) 2000 BSDi
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

95};
96
97static driver_t acpi_pcib_driver = {
98 "acpi_pcib",
99 acpi_pcib_methods,
100 sizeof(struct acpi_pcib_softc),
101};
102
1/*-
2 * Copyright (c) 2000 Michael Smith
3 * Copyright (c) 2000 BSDi
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

95};
96
97static driver_t acpi_pcib_driver = {
98 "acpi_pcib",
99 acpi_pcib_methods,
100 sizeof(struct acpi_pcib_softc),
101};
102
103devclass_t acpi_pcib_devclass;
103static devclass_t acpi_pcib_devclass;
104DRIVER_MODULE(acpi_pcib, acpi, acpi_pcib_driver, acpi_pcib_devclass, 0, 0);
105
106static int
107acpi_pcib_probe(device_t dev)
108{
109
110 if ((acpi_get_type(dev) == ACPI_TYPE_DEVICE) &&
111 !acpi_disabled("pci") &&

--- 407 unchanged lines hidden ---
104DRIVER_MODULE(acpi_pcib, acpi, acpi_pcib_driver, acpi_pcib_devclass, 0, 0);
105
106static int
107acpi_pcib_probe(device_t dev)
108{
109
110 if ((acpi_get_type(dev) == ACPI_TYPE_DEVICE) &&
111 !acpi_disabled("pci") &&

--- 407 unchanged lines hidden ---