Acpi Prp0001 0 Apr 2026

echo "acpi prp0001 0" > /sys/kernel/config/acpi/table/myoverlay/aml (this is not typical syntax, but sometimes seen in debug prints). You are probably looking at a print from the kernel (e.g., dmesg , acpi_match_device debug) showing:

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

Example fragment:

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. 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 :

#include <linux/module.h> #include <linux/acpi.h> static int my_probe(struct acpi_device *adev) { dev_info(&adev->dev, "Matched PRP0001 with UID 0\n"); return 0; } If you need a code piece (kernel module

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

Log In

Forgot password?

Don't have an account? Register

Forgot password?

Enter your account data and we will send you a link to reset your password.

Your password reset link appears to be invalid or expired.

Log in

Privacy Policy

To use social login you have to agree with the storage and handling of your data by this website.

Add to Collection

No Collections

Here you'll find all collections you've created before.