Lines Matching refs:scan
20 The core ACPI namespace scanning code in drivers/acpi/scan.c carries out basic
33 called ACPI scan handlers represented by the following structure:
43 take care of, list_node is the hook to the global list of ACPI scan handlers
50 to match a scan handler against each of them using the ids arrays of the
51 available scan handlers. If a matching scan handler is found, its .attach()
56 The device node's handler field is then populated with the address of the scan
60 interesting to the given scan handler and may be matched against the next scan
62 the namespace scan should be terminated due to a serious error. The error code
66 callbacks from the scan handlers of all device nodes in the given namespace
67 scope (if they have scan handlers). Next, it unregisters all of the device
70 ACPI scan handlers can be added to the list maintained by the ACPI core with the
71 help of the acpi_scan_add_handler() function taking a pointer to the new scan
72 handler as an argument. The order in which scan handlers are added to the list
76 All scan handles must be added to the list before acpi_bus_scan() is run for the