thunderbolt: Drop comma after device id array terminator

The usual style for other device id arrays doesn't have a comma after
the initializer.

Signed-off-by: Uwe Kleine-König (The Capable Hub) <u.kleine-koenig@baylibre.com>
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
This commit is contained in:
Uwe Kleine-König (The Capable Hub)
2026-07-27 11:59:44 +02:00
committed by Mika Westerberg
parent 36eea3468c
commit 9990c493ef
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1459,7 +1459,7 @@ static DEFINE_SIMPLE_DEV_PM_OPS(tbnet_pm_ops, tbnet_suspend, tbnet_resume);
static const struct tb_service_id tbnet_ids[] = {
{ TB_SERVICE("network", 1) },
{ },
{ }
};
MODULE_DEVICE_TABLE(tbsvc, tbnet_ids);
+1 -1
View File
@@ -689,7 +689,7 @@ static const struct dev_pm_ops dma_test_pm_ops = {
static const struct tb_service_id dma_test_ids[] = {
{ TB_SERVICE("dma_test", 1) },
{ },
{ }
};
MODULE_DEVICE_TABLE(tbsvc, dma_test_ids);
+1 -1
View File
@@ -1630,7 +1630,7 @@ static const struct dev_pm_ops tbstream_pm_ops = {
static const struct tb_service_id tbstream_ids[] = {
{ TB_SERVICE("stream", 1) },
{ },
{ }
};
MODULE_DEVICE_TABLE(tbsvc, tbstream_ids);