tee: qcomtee: Drop unused assignment of platform_device_id driver data

The driver explicitly sets the .driver_data member of struct
platform_device_id to zero without relying on that value. Drop this
unused assignment.

While touching this array unify spacing and usage of commas and use
a named initializer for .name for improved readability.

Signed-off-by: Uwe Kleine-König (The Capable Hub) <u.kleine-koenig@baylibre.com>
Reviewed-by: Amirreza Zarrabi <amirreza.zarrabi@oss.qualcomm.com>
Signed-off-by: Jens Wiklander <jenswi@kernel.org>
This commit is contained in:
Uwe Kleine-König (The Capable Hub)
2026-06-16 16:38:29 +02:00
committed by Jens Wiklander
parent dc59e4fea9
commit d92f87f3e7

View File

@@ -798,7 +798,12 @@ static void qcomtee_remove(struct platform_device *pdev)
kfree(qcomtee);
}
static const struct platform_device_id qcomtee_ids[] = { { "qcomtee", 0 }, {} };
static const struct platform_device_id qcomtee_ids[] = {
{
.name = "qcomtee",
},
{ }
};
MODULE_DEVICE_TABLE(platform, qcomtee_ids);
static struct platform_driver qcomtee_platform_driver = {