net: dsa: constify the struct device_type usage
authorRicardo B. Marliere <ricardo@marliere.net>
Sat, 17 Feb 2024 20:13:24 +0000 (17:13 -0300)
committerDavid S. Miller <davem@davemloft.net>
Wed, 21 Feb 2024 09:45:22 +0000 (09:45 +0000)
Since commit aed65af1cc2f ("drivers: make device_type const"), the driver
core can properly handle constant struct device_type. Move the dsa_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>
Signed-off-by: Ricardo B. Marliere <ricardo@marliere.net>
Reviewed-by: Florian Fainelli <florian.fainelli@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/dsa/user.c

index 5d666dfb317d76ef1fdc963b131d46aa2f0cd241..4d53c76a9840a789511b9ee0d9a39c70de77f72c 100644 (file)
@@ -2429,7 +2429,7 @@ static const struct net_device_ops dsa_user_netdev_ops = {
        .ndo_fill_forward_path  = dsa_user_fill_forward_path,
 };
 
-static struct device_type dsa_type = {
+static const struct device_type dsa_type = {
        .name   = "dsa",
 };