CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2016/03/28 13:12:17
Modified files:
sys/dev/acpi : acpi.c
Log message:
Adding each and every new acpi device driver to acpi_foundhid() is
gettinga bit of the burden. And it really isn't how our autoconf
framework is supposed to work for busses that can be enumerated. All
the drivers already check for a matching _HID in their attach
function. So we can just drop the checks in acpi_foundhid() and let
the drivers sort themselves out.
Print a "not configured" line for devices for which we don't attach adriver.
This may be a bit much as there are devices for which we will not have a
driver. This will be removed if it causes too much dmesg spam.
ok deraadt@, mlarkin@