Acpi Prp0001 - 0

module_acpi_driver(my_driver); MODULE_LICENSE("GPL");

Example fragment:

static const struct acpi_device_id my_acpi_ids[] = { { "PRP0001", 0 }, // 0 = driver data { } }; MODULE_DEVICE_TABLE(acpi, my_acpi_ids); acpi prp0001 0

ACPI: PRP0001 (0) found or a where 0 is the driver_data or index. If you need a code piece (kernel module example) Here’s a minimal kernel module that matches PRP0001 with _UID=0 : acpi prp0001 0