summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRandy Dunlap <rdunlap@xenotime.net>2005-10-03 05:41:09 (GMT)
committerJeff Garzik <jgarzik@pobox.com>2005-10-04 02:01:14 (GMT)
commit8cb6108baee9dcd1dc96f476fe217d6a6b53c994 (patch)
tree09eb68368fe4921c260315a927ddddeb4a6ad217
parent0a1c80f1115b9a1aacf00a312a532ceef49dfa1b (diff)
downloadlinux-8cb6108baee9dcd1dc96f476fe217d6a6b53c994.tar.xz
[PATCH] ieee80211: fix gfp flags type
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: Jeff Garzik <jgarzik@pobox.com>
-rw-r--r--net/ieee80211/ieee80211_tx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ieee80211/ieee80211_tx.c b/net/ieee80211/ieee80211_tx.c
index c9aaff3..f915367 100644
--- a/net/ieee80211/ieee80211_tx.c
+++ b/net/ieee80211/ieee80211_tx.c
@@ -207,7 +207,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;