return 0;
 }
 
-static int batadv_interface_open(struct net_device *dev)
-{
-       netif_start_queue(dev);
-       return 0;
-}
-
-static int batadv_interface_release(struct net_device *dev)
-{
-       netif_stop_queue(dev);
-       return 0;
-}
-
 /**
  * batadv_sum_counter() - Sum the cpu-local counters for index 'idx'
  * @bat_priv: the bat priv with all the mesh interface information
 
 static const struct net_device_ops batadv_netdev_ops = {
        .ndo_init = batadv_meshif_init_late,
-       .ndo_open = batadv_interface_open,
-       .ndo_stop = batadv_interface_release,
        .ndo_get_stats = batadv_interface_stats,
        .ndo_vlan_rx_add_vid = batadv_interface_add_vid,
        .ndo_vlan_rx_kill_vid = batadv_interface_kill_vid,