mirror of
https://github.com/torvalds/linux.git
synced 2026-09-22 04:34:03 +02:00
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:
parent
dc59e4fea9
commit
d92f87f3e7
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user