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 25bc99b commit 0a0d851Copy full SHA for 0a0d851
drivers/i3c/master/dw-i3c-master.c
@@ -1748,12 +1748,19 @@ static const struct of_device_id dw_i3c_master_of_match[] = {
1748
};
1749
MODULE_DEVICE_TABLE(of, dw_i3c_master_of_match);
1750
1751
+static const struct acpi_device_id amd_i3c_device_match[] = {
1752
+ { "AMDI0015" },
1753
+ { }
1754
+};
1755
+MODULE_DEVICE_TABLE(acpi, amd_i3c_device_match);
1756
+
1757
static struct platform_driver dw_i3c_driver = {
1758
.probe = dw_i3c_probe,
1759
.remove_new = dw_i3c_remove,
1760
.driver = {
1761
.name = "dw-i3c-master",
1762
.of_match_table = dw_i3c_master_of_match,
1763
+ .acpi_match_table = amd_i3c_device_match,
1764
.pm = &dw_i3c_pm_ops,
1765
},
1766
0 commit comments