diff options
author | Ricardo B. Marliere <ricardo@marliere.net> | 2024-02-17 17:13:31 -0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2024-02-21 09:45:23 +0000 |
commit | 7ae9d3423f1db1a3e61b23038005f892858a6936 (patch) | |
tree | c71bfa181152fb2dee65ecb0df949d2552e677b4 /net/8021q | |
parent | 43820fd1ddb52a4c2b64a3659a9e7c927fc839f0 (diff) |
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.c | 2 |
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", }; |