Commit 409065b0 authored by Andrew Lunn's avatar Andrew Lunn Committed by David S. Miller

dsa: Register the none tagger ops

The none tagger is special in that it does not live in a tag_*.c file,
but is within the core. Register/unregister when DSA is
loaded/unloaded.
Signed-off-by: default avatarAndrew Lunn <andrew@lunn.ch>
Reviewed-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent bdc6fe5b
...@@ -44,6 +44,8 @@ static const struct dsa_device_ops none_ops = { ...@@ -44,6 +44,8 @@ static const struct dsa_device_ops none_ops = {
.rcv = NULL, .rcv = NULL,
}; };
DSA_TAG_DRIVER(none_ops);
const struct dsa_device_ops *dsa_device_ops[DSA_TAG_LAST] = { const struct dsa_device_ops *dsa_device_ops[DSA_TAG_LAST] = {
#ifdef CONFIG_NET_DSA_TAG_BRCM #ifdef CONFIG_NET_DSA_TAG_BRCM
[DSA_TAG_PROTO_BRCM] = &brcm_netdev_ops, [DSA_TAG_PROTO_BRCM] = &brcm_netdev_ops,
...@@ -352,12 +354,17 @@ static int __init dsa_init_module(void) ...@@ -352,12 +354,17 @@ static int __init dsa_init_module(void)
dev_add_pack(&dsa_pack_type); dev_add_pack(&dsa_pack_type);
dsa_tag_driver_register(&DSA_TAG_DRIVER_NAME(none_ops),
THIS_MODULE);
return 0; return 0;
} }
module_init(dsa_init_module); module_init(dsa_init_module);
static void __exit dsa_cleanup_module(void) static void __exit dsa_cleanup_module(void)
{ {
dsa_tag_driver_unregister(&DSA_TAG_DRIVER_NAME(none_ops));
dsa_slave_unregister_notifier(); dsa_slave_unregister_notifier();
dev_remove_pack(&dsa_pack_type); dev_remove_pack(&dsa_pack_type);
dsa_legacy_unregister(); dsa_legacy_unregister();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment