wl12xx: remove 2 unused parameters in wl1271_ps_set_mode()
authorEyal Shapira <eyal@wizery.com>
Tue, 31 Jan 2012 09:57:23 +0000 (11:57 +0200)
committerLuciano Coelho <coelho@ti.com>
Wed, 15 Feb 2012 06:38:32 +0000 (08:38 +0200)
cleanup 2 unused parameters of wl1271_ps_set_mode

Signed-off-by: Eyal Shapira <eyal@wizery.com>
Signed-off-by: Eliad Peller <eliad@wizery.com>
Signed-off-by: Luciano Coelho <coelho@ti.com>
drivers/net/wireless/wl12xx/debugfs.c
drivers/net/wireless/wl12xx/main.c
drivers/net/wireless/wl12xx/ps.c
drivers/net/wireless/wl12xx/ps.h

index 156a774..4436851 100644 (file)
@@ -359,9 +359,7 @@ static ssize_t dynamic_ps_timeout_write(struct file *file,
 
        wl12xx_for_each_wlvif_sta(wl, wlvif) {
                if (test_bit(WLVIF_FLAG_PSM, &wlvif->flags))
-                       wl1271_ps_set_mode(wl, wlvif, STATION_AUTO_PS_MODE,
-                                          wlvif->basic_rate, true);
-
+                       wl1271_ps_set_mode(wl, wlvif, STATION_AUTO_PS_MODE);
        }
 
        wl1271_ps_elp_sleep(wl);
index 6b24086..97f7591 100644 (file)
@@ -2472,8 +2472,7 @@ static int wl12xx_config_vif(struct wl1271 *wl, struct wl12xx_vif *wlvif,
                if (test_bit(WLVIF_FLAG_STA_ASSOCIATED, &wlvif->flags)) {
                        wl1271_debug(DEBUG_PSM, "psm enabled");
                        ret = wl1271_ps_set_mode(wl, wlvif,
-                                                STATION_POWER_SAVE_MODE,
-                                                wlvif->basic_rate, true);
+                                                STATION_AUTO_PS_MODE);
                }
        } else if (!(conf->flags & IEEE80211_CONF_PS) &&
                   test_bit(WLVIF_FLAG_PSM_REQUESTED, &wlvif->flags)) {
@@ -2483,8 +2482,7 @@ static int wl12xx_config_vif(struct wl1271 *wl, struct wl12xx_vif *wlvif,
 
                if (test_bit(WLVIF_FLAG_PSM, &wlvif->flags))
                        ret = wl1271_ps_set_mode(wl, wlvif,
-                                                STATION_ACTIVE_MODE,
-                                                wlvif->basic_rate, true);
+                                                STATION_ACTIVE_MODE);
        }
 
        if (conf->power_level != wlvif->power_level) {
@@ -3824,9 +3822,7 @@ sta_not_found:
                    !test_bit(WLVIF_FLAG_PSM, &wlvif->flags)) {
 
                        ret = wl1271_ps_set_mode(wl, wlvif,
-                                                STATION_AUTO_PS_MODE,
-                                                wlvif->basic_rate,
-                                                true);
+                                                STATION_AUTO_PS_MODE);
                        if (ret < 0)
                                goto out;
                }
index 60f03c4..5074c2a 100644 (file)
@@ -160,7 +160,7 @@ out:
 }
 
 int wl1271_ps_set_mode(struct wl1271 *wl, struct wl12xx_vif *wlvif,
-                      enum wl1271_cmd_ps_mode mode, u32 rates, bool send)
+                      enum wl1271_cmd_ps_mode mode)
 {
        int ret;
        u16 timeout = wl->conf.conn.dynamic_ps_timeout;
index a12052f..5f19d4f 100644 (file)
@@ -28,7 +28,7 @@
 #include "acx.h"
 
 int wl1271_ps_set_mode(struct wl1271 *wl, struct wl12xx_vif *wlvif,
-                      enum wl1271_cmd_ps_mode mode, u32 rates, bool send);
+                      enum wl1271_cmd_ps_mode mode);
 void wl1271_ps_elp_sleep(struct wl1271 *wl);
 int wl1271_ps_elp_wakeup(struct wl1271 *wl);
 void wl1271_elp_work(struct work_struct *work);