Displaying 5 results from an estimated 5 matches for "acpi_match_table".
2015 Jul 28
3
[PATCH] virtio_mmio: add ACPI probing
...0005", },
+ { }
+};
+MODULE_DEVICE_TABLE(acpi, virtio_mmio_acpi_match);
+#endif
+
static struct platform_driver virtio_mmio_driver = {
.probe = virtio_mmio_probe,
.remove = virtio_mmio_remove,
.driver = {
.name = "virtio-mmio",
.of_match_table = virtio_mmio_match,
+ .acpi_match_table = ACPI_PTR(virtio_mmio_acpi_match),
},
};
--
2.1.4
2015 Jul 28
3
[PATCH] virtio_mmio: add ACPI probing
...0005", },
+ { }
+};
+MODULE_DEVICE_TABLE(acpi, virtio_mmio_acpi_match);
+#endif
+
static struct platform_driver virtio_mmio_driver = {
.probe = virtio_mmio_probe,
.remove = virtio_mmio_remove,
.driver = {
.name = "virtio-mmio",
.of_match_table = virtio_mmio_match,
+ .acpi_match_table = ACPI_PTR(virtio_mmio_acpi_match),
},
};
--
2.1.4
2015 Jul 28
0
[PATCH] virtio_mmio: add ACPI probing
...(acpi, virtio_mmio_acpi_match);
> +#endif
> +
> static struct platform_driver virtio_mmio_driver = {
> .probe = virtio_mmio_probe,
> .remove = virtio_mmio_remove,
> .driver = {
> .name = "virtio-mmio",
> .of_match_table = virtio_mmio_match,
> + .acpi_match_table = ACPI_PTR(virtio_mmio_acpi_match),
> },
> };
>
> --
> 2.1.4
2015 Jul 29
0
[PATCH] virtio_mmio: add ACPI probing
...(acpi, virtio_mmio_acpi_match);
> +#endif
> +
> static struct platform_driver virtio_mmio_driver = {
> .probe = virtio_mmio_probe,
> .remove = virtio_mmio_remove,
> .driver = {
> .name = "virtio-mmio",
> .of_match_table = virtio_mmio_match,
> + .acpi_match_table = ACPI_PTR(virtio_mmio_acpi_match),
> },
> };
>
> --
> 2.1.4
2020 Jul 13
0
[vhost:config-endian 38/39] drivers/platform/mellanox/mlxbf-tmfifo.c:1241:22: error: expected ')' before ';' token
...0 },
1273 {}
1274 };
1275 MODULE_DEVICE_TABLE(acpi, mlxbf_tmfifo_acpi_match);
1276
1277 static struct platform_driver mlxbf_tmfifo_driver = {
1278 .probe = mlxbf_tmfifo_probe,
1279 .remove = mlxbf_tmfifo_remove,
1280 .driver = {
1281 .name = "bf-tmfifo",
1282 .acpi_match_table = mlxbf_tmfifo_acpi_match,
1283 },
1284 };
1285
1286 module_platform_driver(mlxbf_tmfifo_driver);
1287
1288 MODULE_DESCRIPTION("Mellanox BlueField SoC TmFifo Driver");
1289 MODULE_LICENSE("GPL v2");
> 1290 MODULE_AUTHOR("Mellanox Technologies");
--...