diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2005-10-03 17:02:14 +0200 |
---|---|---|
committer | James Ketrenos <jketreno@linux.intel.com> | 2005-10-03 17:02:14 +0200 |
commit | e846cbb11245e648983b50349a1c715202d5ccf0 (patch) | |
tree | 7cdeea0d54e1fcf13cd2d2d372749e6f1936e2de /net | |
parent | This will move the ieee80211_is_ofdm_rate function to the ieee80211.h (diff) | |
download | linux-e846cbb11245e648983b50349a1c715202d5ccf0.tar.xz linux-e846cbb11245e648983b50349a1c715202d5ccf0.zip |
Fix implicit nocast warnings in ieee80211 code:
net/ieee80211/ieee80211_tx.c:215:9: warning: implicit cast to nocast type
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/ieee80211/ieee80211_tx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ieee80211/ieee80211_tx.c b/net/ieee80211/ieee80211_tx.c index 8d87897d7eb7..e860777ab8d3 100644 --- a/net/ieee80211/ieee80211_tx.c +++ b/net/ieee80211/ieee80211_tx.c @@ -187,7 +187,7 @@ void ieee80211_txb_free(struct ieee80211_txb *txb) } static struct ieee80211_txb *ieee80211_alloc_txb(int nr_frags, int txb_size, - int gfp_mask) + unsigned int gfp_mask) { struct ieee80211_txb *txb; int i; |