From: Randy Dunlap Date: Mon, 3 Oct 2005 15:02:14 +0000 (-0500) Subject: Fix implicit nocast warnings in ieee80211 code: X-Git-Tag: v2.6.15-rc1~733^2~1^2~44^2~3 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=e846cbb11245e648983b50349a1c715202d5ccf0;p=linux-block.git 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: James Ketrenos --- 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;