]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
floppy: Drop unused pnp driver data
authorUwe Kleine-König (The Capable Hub) <u.kleine-koenig@baylibre.com>
Wed, 10 Jun 2026 07:27:55 +0000 (09:27 +0200)
committerJens Axboe <axboe@kernel.dk>
Wed, 10 Jun 2026 12:23:51 +0000 (06:23 -0600)
The pnp_device_id array is only used for module data to support
auto-loading the floppy module. So the .driver_data member is unused and
this assignment can be dropped.

While touching that array, align the coding style to what is used most
for these.

This patch doesn't modify the compiled array, only its representation
in source form benefits. The former was confirmed with x86 and arm64
builds.

Signed-off-by: Uwe Kleine-König (The Capable Hub) <u.kleine-koenig@baylibre.com>
Reviewed-by: Denis Efremov (Oracle) <efremov@linux.com>
Link: https://patch.msgid.link/99dbf851ffb99229ea1dcfd8f58e9ee6a1f05349.1781075967.git.u.kleine-koenig@baylibre.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/block/floppy.c

index 0509746f8aed01b291d07cc463d2053994c1121e..dca495be0683e0a1bc63bc48290dd9e3b6f4902b 100644 (file)
@@ -5012,8 +5012,8 @@ MODULE_LICENSE("GPL");
 
 /* This doesn't actually get used other than for module information */
 static const struct pnp_device_id floppy_pnpids[] = {
-       {"PNP0700", 0},
-       {}
+       { .id = "PNP0700" },
+       { }
 };
 
 MODULE_DEVICE_TABLE(pnp, floppy_pnpids);