ata: pata_parport: make pata_parport_bus_type const
authorRicardo B. Marliere <ricardo@marliere.net>
Sun, 4 Feb 2024 15:23:29 +0000 (12:23 -0300)
committerNiklas Cassel <cassel@kernel.org>
Tue, 6 Feb 2024 09:41:57 +0000 (10:41 +0100)
Now that the driver core can properly handle constant struct bus_type,
move the pata_parport_bus_type variable to be a constant structure as well,
placing it into read-only memory which can not be modified at runtime.

Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Suggested-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: "Ricardo B. Marliere" <ricardo@marliere.net>
Reviewed-by: Damien Le Moal <dlemoal@kernel.org>
Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Niklas Cassel <cassel@kernel.org>
drivers/ata/pata_parport/pata_parport.c

index a7adfdcb5e27cef19a74a97b6e3d6da2b1d2fbed..9a2cb9ca9d1dabfb6a3948abf90ad36d42d79b3d 100644 (file)
@@ -464,7 +464,7 @@ static void pata_parport_bus_release(struct device *dev)
        /* nothing to do here but required to avoid warning on device removal */
 }
 
-static struct bus_type pata_parport_bus_type = {
+static const struct bus_type pata_parport_bus_type = {
        .name = DRV_NAME,
 };