Skip to content

Commit

Permalink
ath10k: prefer unsigned int over just unsigned
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
kvalo committed Feb 7, 2017
1 parent 36401cb commit b2d6041
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/wireless/ath/ath10k/htt.h
Original file line number Diff line number Diff line change
Expand Up @@ -1636,7 +1636,7 @@ struct ath10k_htt {
int size;

/* size - 1 */
unsigned size_mask;
unsigned int size_mask;

/* how many rx buffers to keep in the ring */
int fill_level;
Expand All @@ -1657,7 +1657,7 @@ struct ath10k_htt {

/* where HTT SW has processed bufs filled by rx MAC DMA */
struct {
unsigned msdu_payld;
unsigned int msdu_payld;
} sw_rd_idx;

/*
Expand Down

0 comments on commit b2d6041

Please sign in to comment.