• R
    ath10k: fix compilation warnings in wmi phyerr pull function · ee92a209
    Raja Mani 提交于
    Below compilation warnings are observed in gcc version 4.8.2.
    Even though it's not seen in bit older gcc versions (for ex, 4.7.3),
    It's good to fix it by changing format specifier from %d to
    %zd in wmi pull phyerr functions.
    
    wmi.c: In function 'ath10k_wmi_op_pull_phyerr_ev':
    wmi.c:3567:8: warning: format '%d' expects argument of type 'int',
                  but argument 4 has type 'long unsigned int' [-Wformat=]
                  left_len, sizeof(*phyerr));
                            ^
    wmi.c: In function 'ath10k_wmi_10_4_op_pull_phyerr_ev':
    wmi.c:3612:8: warning: format '%d' expects argument of type 'int',
    	      but argument 4 has type 'long unsigned int' [-Wformat=]
                  left_len, sizeof(*phyerr));
                            ^
    Fixes: 991adf71 ("ath10k: refactor phyerr event handlers")
    Fixes: 2b0a2e0d ("ath10k: handle 10.4 firmware phyerr event")
    Signed-off-by: NRaja Mani <rmani@qti.qualcomm.com>
    Signed-off-by: NKalle Valo <kvalo@qca.qualcomm.com>
    ee92a209
wmi.c 222.2 KB