We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e42bcb commit a53c28bCopy full SHA for a53c28b
drivers/cxl/acpi.c
@@ -515,12 +515,19 @@ static const struct acpi_device_id cxl_acpi_ids[] = {
515
};
516
MODULE_DEVICE_TABLE(acpi, cxl_acpi_ids);
517
518
+static const struct platform_device_id cxl_test_ids[] = {
519
+ { "cxl_acpi" },
520
+ { },
521
+};
522
+MODULE_DEVICE_TABLE(platform, cxl_test_ids);
523
+
524
static struct platform_driver cxl_acpi_driver = {
525
.probe = cxl_acpi_probe,
526
.driver = {
527
.name = KBUILD_MODNAME,
528
.acpi_match_table = cxl_acpi_ids,
529
},
530
+ .id_table = cxl_test_ids,
531
532
533
module_platform_driver(cxl_acpi_driver);
0 commit comments