diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2005-10-03 10:02:14 -0500 |
---|---|---|
committer | James Ketrenos <jketreno@linux.intel.com> | 2005-10-03 10:02:14 -0500 |
commit | e846cbb11245e648983b50349a1c715202d5ccf0 (patch) | |
tree | 7cdeea0d54e1fcf13cd2d2d372749e6f1936e2de /net/ieee80211 | |
parent | 7c254d3dba0fae124b1d33f784ca23572ac386b0 (diff) |
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/ieee80211')
-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 8d87897d7eb..e860777ab8d 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; |