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 :
static struct acpi_driver my_driver = { .name = "my_prp0001_driver", .ids = my_acpi_ids, .ops = { .add = my_probe, }, };
If you meant something else (e.g., boot parameter, overlay syntax), please provide more context.
module_acpi_driver(my_driver); MODULE_LICENSE("GPL");