diff options
author | Vladimir Oltean <vladimir.oltean@nxp.com> | 2020-06-27 15:03:06 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-06-28 21:40:21 -0700 |
commit | 836e0e555893bbff8997d666b3e4d508c8a7641b (patch) | |
tree | 2cda73427f331f044ad0c7cc25b6717d038d1076 | |
parent | cf8a9ab7f7d4b43ef7aa85427fec2458a6709054 (diff) | |
download | lwn-836e0e555893bbff8997d666b3e4d508c8a7641b.tar.gz lwn-836e0e555893bbff8997d666b3e4d508c8a7641b.zip |
net: mscc: ocelot: remove EXPORT_SYMBOL from ocelot_net.c
Now that all net_device operations are bundled together inside
mscc_ocelot.ko and no longer part of the common library, there's no
reason to export these symbols.
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/mscc/ocelot_net.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/net/ethernet/mscc/ocelot_net.c b/drivers/net/ethernet/mscc/ocelot_net.c index 702b42543fb7..5868ff753232 100644 --- a/drivers/net/ethernet/mscc/ocelot_net.c +++ b/drivers/net/ethernet/mscc/ocelot_net.c @@ -953,7 +953,6 @@ notify: struct notifier_block ocelot_netdevice_nb __read_mostly = { .notifier_call = ocelot_netdevice_event, }; -EXPORT_SYMBOL(ocelot_netdevice_nb); static int ocelot_switchdev_event(struct notifier_block *unused, unsigned long event, void *ptr) @@ -975,7 +974,6 @@ static int ocelot_switchdev_event(struct notifier_block *unused, struct notifier_block ocelot_switchdev_nb __read_mostly = { .notifier_call = ocelot_switchdev_event, }; -EXPORT_SYMBOL(ocelot_switchdev_nb); static int ocelot_switchdev_blocking_event(struct notifier_block *unused, unsigned long event, void *ptr) @@ -1008,7 +1006,6 @@ static int ocelot_switchdev_blocking_event(struct notifier_block *unused, struct notifier_block ocelot_switchdev_blocking_nb __read_mostly = { .notifier_call = ocelot_switchdev_blocking_event, }; -EXPORT_SYMBOL(ocelot_switchdev_blocking_nb); int ocelot_probe_port(struct ocelot *ocelot, u8 port, void __iomem *regs, @@ -1054,4 +1051,3 @@ int ocelot_probe_port(struct ocelot *ocelot, u8 port, return err; } -EXPORT_SYMBOL(ocelot_probe_port); |