You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
Pull auto-load-modules into release branch
This commit is contained in:
@@ -21,7 +21,10 @@
|
||||
|
||||
#include <linux/acpi.h>
|
||||
#include <linux/pnp.h>
|
||||
#include <linux/mod_devicetable.h>
|
||||
#include <acpi/acpi_bus.h>
|
||||
#include <acpi/actypes.h>
|
||||
|
||||
#include "pnpacpi.h"
|
||||
|
||||
static int num = 0;
|
||||
@@ -33,15 +36,17 @@ static int num = 0;
|
||||
* have irqs (PIC, Timer) because we call acpi_register_gsi.
|
||||
* Finaly only devices that have a CRS method need to be in this list.
|
||||
*/
|
||||
static char __initdata excluded_id_list[] =
|
||||
"PNP0C09," /* EC */
|
||||
"PNP0C0F," /* Link device */
|
||||
"PNP0000," /* PIC */
|
||||
"PNP0100," /* Timer */
|
||||
;
|
||||
static __initdata struct acpi_device_id excluded_id_list[] ={
|
||||
{"PNP0C09", 0}, /* EC */
|
||||
{"PNP0C0F", 0}, /* Link device */
|
||||
{"PNP0000", 0}, /* PIC */
|
||||
{"PNP0100", 0}, /* Timer */
|
||||
{"", 0},
|
||||
};
|
||||
|
||||
static inline int is_exclusive_device(struct acpi_device *dev)
|
||||
{
|
||||
return (!acpi_match_ids(dev, excluded_id_list));
|
||||
return (!acpi_match_device_ids(dev, excluded_id_list));
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user