acpi_resource.c (cb97ee57c05a9882937ae2f4c7a110712992d42f) acpi_resource.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:

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

530};
531
532static driver_t acpi_sysresource_driver = {
533 "acpi_sysresource",
534 acpi_sysresource_methods,
535 0,
536};
537
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:

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

530};
531
532static driver_t acpi_sysresource_driver = {
533 "acpi_sysresource",
534 acpi_sysresource_methods,
535 0,
536};
537
538devclass_t acpi_sysresource_devclass;
538static devclass_t acpi_sysresource_devclass;
539DRIVER_MODULE(acpi_sysresource, acpi, acpi_sysresource_driver, acpi_sysresource_devclass, 0, 0);
540
541static int
542acpi_sysresource_probe(device_t dev)
543{
544 if (acpi_disabled("sysresource"))
545 return(ENXIO);
546 if (acpi_MatchHid(dev, "PNP0C02")) {

--- 30 unchanged lines hidden ---
539DRIVER_MODULE(acpi_sysresource, acpi, acpi_sysresource_driver, acpi_sysresource_devclass, 0, 0);
540
541static int
542acpi_sysresource_probe(device_t dev)
543{
544 if (acpi_disabled("sysresource"))
545 return(ENXIO);
546 if (acpi_MatchHid(dev, "PNP0C02")) {

--- 30 unchanged lines hidden ---