From: Randy Dunlap Date: Mon, 3 Oct 2005 05:41:09 +0000 (-0700) Subject: [PATCH] ieee80211: fix gfp flags type X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=8cb6108baee9dcd1dc96f476fe217d6a6b53c994;p=linux-beck.git [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 Signed-off-by: Jeff Garzik --- diff --git a/net/ieee80211/ieee80211_tx.c b/net/ieee80211/ieee80211_tx.c index c9aaff3fea1e..f9153671168e 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;