mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
ath10k: prefer kernel type 'u64' over 'u_int64_t'
Fixes checkpatch warnings: drivers/net/wireless/ath/ath10k/htt.h:1477: Prefer kernel type 'u64' over 'u_int64_t' drivers/net/wireless/ath/ath10k/htt.h:1480: Prefer kernel type 'u64' over 'u_int64_t' Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
This commit is contained in:
parent
14e105cd40
commit
beeb1a302f
@ -1475,10 +1475,10 @@ union htt_rx_pn_t {
|
||||
u32 pn24;
|
||||
|
||||
/* TKIP or CCMP: 48-bit PN */
|
||||
u_int64_t pn48;
|
||||
u64 pn48;
|
||||
|
||||
/* WAPI: 128-bit PN */
|
||||
u_int64_t pn128[2];
|
||||
u64 pn128[2];
|
||||
};
|
||||
|
||||
struct htt_cmd {
|
||||
|
Loading…
Reference in New Issue
Block a user