]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: wilc1000: remove ip timeout timer
authorAdham Abozaeid <adham.abozaeid@microchip.com>
Thu, 25 Jul 2019 21:31:34 +0000 (21:31 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 30 Jul 2019 07:56:45 +0000 (09:56 +0200)
during_ip_timer is not required after removing the code that disables
powersave while the ip is being obtained.
Its handler clear_during_ip is also removed

Signed-off-by: Adham Abozaeid <adham.abozaeid@microchip.com>
Link: https://lore.kernel.org/r/20190725213125.2810-3-adham.abozaeid@microchip.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_hif.c
drivers/staging/wilc1000/wilc_wfi_cfgoperations.c

index 9345cabe3c9359fe6140e82981e01cb80c880a1e..9bd2d14ad610b44a39f567bad30fc17dbddadcf3 100644 (file)
@@ -684,8 +684,6 @@ static inline void host_int_parse_assoc_resp_info(struct wilc_vif *vif,
                hif_drv->hif_state = HOST_IF_CONNECTED;
 
                vif->obtaining_ip = true;
-               mod_timer(&vif->during_ip_timer,
-                         jiffies + msecs_to_jiffies(10000));
        } else {
                hif_drv->hif_state = HOST_IF_IDLE;
        }
index 12fb4add05eca8b12cd59886e9a4bc56ad008967..81fe26a6b6dbc1a0cf2e0bf6b2ac664b51d105b0 100644 (file)
@@ -70,15 +70,6 @@ struct wilc_p2p_mgmt_data {
 static const u8 p2p_oui[] = {0x50, 0x6f, 0x9A, 0x09};
 static const u8 p2p_vendor_spec[] = {0xdd, 0x05, 0x00, 0x08, 0x40, 0x03};
 
-#define WILC_IP_TIMEOUT_MS             15000
-
-static void clear_during_ip(struct timer_list *t)
-{
-       struct wilc_vif *vif = from_timer(vif, t, during_ip_timer);
-
-       vif->obtaining_ip = false;
-}
-
 static void cfg_scan_result(enum scan_event scan_event,
                            struct wilc_rcvd_net_info *info, void *user_void)
 {
@@ -1421,7 +1412,6 @@ static int change_virtual_intf(struct wiphy *wiphy, struct net_device *dev,
        priv->p2p.recv_random = 0x00;
        priv->p2p.is_wilc_ie = false;
        vif->obtaining_ip = false;
-       del_timer(&vif->during_ip_timer);
 
        switch (type) {
        case NL80211_IFTYPE_STATION:
@@ -1469,8 +1459,6 @@ static int change_virtual_intf(struct wiphy *wiphy, struct net_device *dev,
 
        case NL80211_IFTYPE_P2P_GO:
                vif->obtaining_ip = true;
-               mod_timer(&vif->during_ip_timer,
-                         jiffies + msecs_to_jiffies(WILC_IP_TIMEOUT_MS));
                wilc_set_operation_mode(vif, WILC_AP_MODE);
                dev->ieee80211_ptr->iftype = type;
                priv->wdev.iftype = type;
@@ -1948,8 +1936,6 @@ int wilc_init_host_int(struct net_device *net)
        struct wilc_vif *vif = netdev_priv(net);
        struct wilc_priv *priv = &vif->priv;
 
-       timer_setup(&vif->during_ip_timer, clear_during_ip, 0);
-
        priv->p2p_listen_state = false;
 
        mutex_init(&priv->scan_req_lock);
@@ -1971,8 +1957,6 @@ void wilc_deinit_host_int(struct net_device *net)
        mutex_destroy(&priv->scan_req_lock);
        ret = wilc_deinit(vif);
 
-       del_timer_sync(&vif->during_ip_timer);
-
        if (ret)
                netdev_err(net, "Error while deinitializing host interface\n");
 }