diff options
author | Vivien Didelot <vivien.didelot@savoirfairelinux.com> | 2015-09-29 19:07:15 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-09-30 07:31:59 +0300 |
commit | 03d5fb18626aff95426a380aef0d1c6904cac7c9 (patch) | |
tree | e7fe66fd345a18402ff0ce169e4f493c134f7842 /include/net/switchdev.h | |
parent | e02a06b2a7c6e8b43c60ed8e0181172231af13d7 (diff) | |
download | linux-03d5fb18626aff95426a380aef0d1c6904cac7c9.tar.xz |
net: switchdev: remove dev from switchdev_obj cb
The net_device associated to a dump operation does not have to be passed
to the callback. switchdev stores it in a superset struct, if needed.
Also some drivers (such as DSA drivers) may not have easy access to it.
This will simplify pushing the callback function down to the drivers.
Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/switchdev.h')
-rw-r--r-- | include/net/switchdev.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/switchdev.h b/include/net/switchdev.h index 18207878e407..9ef7c5635769 100644 --- a/include/net/switchdev.h +++ b/include/net/switchdev.h @@ -66,7 +66,7 @@ enum switchdev_obj_id { struct switchdev_obj { enum switchdev_obj_id id; - int (*cb)(struct net_device *dev, struct switchdev_obj *obj); + int (*cb)(struct switchdev_obj *obj); union { struct switchdev_obj_vlan { /* PORT_VLAN */ u16 flags; |