ath10k: prefer unsigned int over just unsigned
Fixes new checkpatch warnings: drivers/net/wireless/ath/ath10k/htt.h:1639: Prefer 'unsigned int' to bare use of 'unsigned' drivers/net/wireless/ath/ath10k/htt.h:1660: Prefer 'unsigned int' to bare use of 'unsigned' Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
This commit is contained in:
parent
36401cb7ff
commit
b2d6041568
|
@ -1636,7 +1636,7 @@ struct ath10k_htt {
|
||||||
int size;
|
int size;
|
||||||
|
|
||||||
/* size - 1 */
|
/* size - 1 */
|
||||||
unsigned size_mask;
|
unsigned int size_mask;
|
||||||
|
|
||||||
/* how many rx buffers to keep in the ring */
|
/* how many rx buffers to keep in the ring */
|
||||||
int fill_level;
|
int fill_level;
|
||||||
|
@ -1657,7 +1657,7 @@ struct ath10k_htt {
|
||||||
|
|
||||||
/* where HTT SW has processed bufs filled by rx MAC DMA */
|
/* where HTT SW has processed bufs filled by rx MAC DMA */
|
||||||
struct {
|
struct {
|
||||||
unsigned msdu_payld;
|
unsigned int msdu_payld;
|
||||||
} sw_rd_idx;
|
} sw_rd_idx;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue