mirror of
https://github.com/torvalds/linux.git
synced 2026-05-29 17:43:52 +02:00
net: dsa: constify the struct device_type usage
Since commit aed65af1cc ("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>
This commit is contained in:
parent
3ce7caee3a
commit
7e0acba3b4
|
|
@ -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",
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user