Skip to content

Commit ba609e9

Browse files
committed
vxlan: fix function name spelling
Signed-off-by: Stephen Hemminger <[email protected]>
1 parent 3f5d6af commit ba609e9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/net/vxlan.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1332,7 +1332,7 @@ static int vxlan_init(struct net_device *dev)
13321332
return 0;
13331333
}
13341334

1335-
static void vxlan_fdb_delete_defualt(struct vxlan_dev *vxlan)
1335+
static void vxlan_fdb_delete_default(struct vxlan_dev *vxlan)
13361336
{
13371337
struct vxlan_fdb *f;
13381338

@@ -1349,7 +1349,7 @@ static void vxlan_uninit(struct net_device *dev)
13491349
struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
13501350
struct vxlan_sock *vs = vxlan->vn_sock;
13511351

1352-
vxlan_fdb_delete_defualt(vxlan);
1352+
vxlan_fdb_delete_default(vxlan);
13531353

13541354
if (vs)
13551355
vxlan_sock_release(vn, vs);
@@ -1756,7 +1756,7 @@ static int vxlan_newlink(struct net *net, struct net_device *dev,
17561756

17571757
err = register_netdevice(dev);
17581758
if (err) {
1759-
vxlan_fdb_delete_defualt(vxlan);
1759+
vxlan_fdb_delete_default(vxlan);
17601760
return err;
17611761
}
17621762

0 commit comments

Comments
 (0)