size_t bufsz = 400;
        char *buf = kzalloc(bufsz, GFP_KERNEL), *p = buf;
        u64 rx_airtime = 0, tx_airtime = 0;
-       s64 deficit[IEEE80211_NUM_ACS];
+       s32 deficit[IEEE80211_NUM_ACS];
        ssize_t rv;
        int ac;
 
 
        p += scnprintf(p, bufsz + buf - p,
                "RX: %llu us\nTX: %llu us\nWeight: %u\n"
-               "Deficit: VO: %lld us VI: %lld us BE: %lld us BK: %lld us\n",
+               "Deficit: VO: %d us VI: %d us BE: %d us BK: %d us\n",
                rx_airtime, tx_airtime, sta->airtime_weight,
                deficit[0], deficit[1], deficit[2], deficit[3]);
 
 
                struct sta_info *sta = container_of(txqi->txq.sta,
                                                    struct sta_info, sta);
                bool aql_check = ieee80211_txq_airtime_check(hw, &txqi->txq);
-               s64 deficit = sta->airtime[txqi->txq.ac].deficit;
+               s32 deficit = sta->airtime[txqi->txq.ac].deficit;
 
                if (aql_check)
                        found_eligible_txq = true;