]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
rtlwifi: drop unused ppsc->last_wakeup_time
authorArnd Bergmann <arnd@arndb.de>
Mon, 6 Nov 2017 13:55:37 +0000 (14:55 +0100)
committerKalle Valo <kvalo@codeaurora.org>
Wed, 8 Nov 2017 12:33:06 +0000 (14:33 +0200)
The calculation of ppsc->last_wakeup_time is not y2038-safe, but
the variable is not used at all, so we can simply drop it.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/realtek/rtlwifi/rtl8821ae/hw.c
drivers/net/wireless/realtek/rtlwifi/wifi.h

index 5a5ce98acb0b9383aa0c625d0460914c03fff67b..43e18c4c1e68e9e17fbae576fda6549e2398768c 100644 (file)
@@ -1364,7 +1364,6 @@ static void _rtl8821ae_get_wakeup_reason(struct ieee80211_hw *hw)
        struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw));
        struct rtl_ps_ctl *ppsc = rtl_psc(rtlpriv);
        u8 fw_reason = 0;
-       struct timeval ts;
 
        fw_reason = rtl_read_byte(rtlpriv, REG_MCUTST_WOWLAN);
 
@@ -1378,15 +1377,11 @@ static void _rtl8821ae_get_wakeup_reason(struct ieee80211_hw *hw)
        switch (fw_reason) {
        case FW_WOW_V2_PTK_UPDATE_EVENT:
                ppsc->wakeup_reason = WOL_REASON_PTK_UPDATE;
-               do_gettimeofday(&ts);
-               ppsc->last_wakeup_time = ts.tv_sec*1000 + ts.tv_usec/1000;
                RT_TRACE(rtlpriv, COMP_POWER, DBG_DMESG,
                         "It's a WOL PTK Key update event!\n");
                break;
        case FW_WOW_V2_GTK_UPDATE_EVENT:
                ppsc->wakeup_reason = WOL_REASON_GTK_UPDATE;
-               do_gettimeofday(&ts);
-               ppsc->last_wakeup_time = ts.tv_sec*1000 + ts.tv_usec/1000;
                RT_TRACE(rtlpriv, COMP_POWER, DBG_DMESG,
                         "It's a WOL GTK Key update event!\n");
                break;
index c96abc926cfd8fe1d03aa65a4c9883dac2f832f7..92d4859ec9067f708822276777d1c149cdfc1e98 100644 (file)
@@ -1954,8 +1954,6 @@ struct rtl_ps_ctl {
        u8 gtk_offload_enable;
        /* Used for WOL, indicates the reason for waking event.*/
        u32 wakeup_reason;
-       /* Record the last waking time for comparison with setting key. */
-       u64 last_wakeup_time;
 };
 
 struct rtl_stats {