diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2005-10-02 22:41:09 -0700 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-10-03 22:01:14 -0400 |
commit | 8cb6108baee9dcd1dc96f476fe217d6a6b53c994 (patch) | |
tree | 09eb68368fe4921c260315a927ddddeb4a6ad217 /net | |
parent | 0a1c80f1115b9a1aacf00a312a532ceef49dfa1b (diff) | |
download | op-kernel-dev-8cb6108baee9dcd1dc96f476fe217d6a6b53c994.zip op-kernel-dev-8cb6108baee9dcd1dc96f476fe217d6a6b53c994.tar.gz |
[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>
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 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; |