summaryrefslogtreecommitdiffstats
path: root/net/8021q
diff options
context:
space:
mode:
authorRicardo B. Marliere <ricardo@marliere.net>2024-02-17 17:13:31 -0300
committerDavid S. Miller <davem@davemloft.net>2024-02-21 09:45:23 +0000
commit7ae9d3423f1db1a3e61b23038005f892858a6936 (patch)
treec71bfa181152fb2dee65ecb0df949d2552e677b4 /net/8021q
parent43820fd1ddb52a4c2b64a3659a9e7c927fc839f0 (diff)
downloadlinux-7ae9d3423f1db1a3e61b23038005f892858a6936.tar.gz
linux-7ae9d3423f1db1a3e61b23038005f892858a6936.tar.bz2
linux-7ae9d3423f1db1a3e61b23038005f892858a6936.zip
net: vlan: constify the struct device_type usage
Since commit aed65af1cc2f ("drivers: make device_type const"), the driver core can properly handle constant struct device_type. Move the vlan_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: Simon Horman <horms@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/8021q')
-rw-r--r--net/8021q/vlan_dev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/8021q/vlan_dev.c b/net/8021q/vlan_dev.c
index 790b54a7cbe3..df5552518251 100644
--- a/net/8021q/vlan_dev.c
+++ b/net/8021q/vlan_dev.c
@@ -537,7 +537,7 @@ static const struct header_ops vlan_passthru_header_ops = {
.parse_protocol = vlan_parse_protocol,
};
-static struct device_type vlan_type = {
+static const struct device_type vlan_type = {
.name = "vlan",
};