Prp0001 0 — Acpi
Notice the trick: The ACPI ID is PRP0001 , but the driver uses a pointer to the OF match table. The kernel then tries each compatible string in the _DSD against that table. Problem: Device not created (error -16 or -19) Step 1: Confirm the device is actually enumerated
echo 1 > /sys/bus/acpi/devices/PRP0001:00/unbind 2>/dev/null echo 1 > /sys/bus/acpi/devices/PRP0001:00/bind Watch dmesg for new output. acpi prp0001 0
static const struct of_device_id bmp280_of_match[] = .compatible = "bosch,bme280" , ; MODULE_DEVICE_TABLE(of, bmp280_of_match); static const struct acpi_device_id bmp280_acpi_match[] = "PRP0001", .driver_data = (kernel_ulong_t)&bmp280_of_match[0] , ; MODULE_DEVICE_TABLE(acpi, bmp280_acpi_match); Notice the trick: The ACPI ID is PRP0001