Staging: agnx: mac80211 hw config change flags

Adapt agnx after commit "mac80211: introduce hw config change flags",
detected by following build warning:
drivers/staging/agnx/pci.c:426: warning: initialization from incompatible pointer type

Signed-off-by: Herton Ronaldo Krzesinski <herton@mandriva.com.br>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Herton Ronaldo Krzesinski 2009-02-13 08:35:12 -05:00 коммит произвёл Greg Kroah-Hartman
Родитель 39b41b23e2
Коммит 262d387063
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -286,10 +286,10 @@ static void agnx_stop(struct ieee80211_hw *dev)
rings_free(priv); rings_free(priv);
} }
static int agnx_config(struct ieee80211_hw *dev, static int agnx_config(struct ieee80211_hw *dev, u32 changed)
struct ieee80211_conf *conf)
{ {
struct agnx_priv *priv = dev->priv; struct agnx_priv *priv = dev->priv;
struct ieee80211_conf *conf = &dev->conf;
int channel = ieee80211_frequency_to_channel(conf->channel->center_freq); int channel = ieee80211_frequency_to_channel(conf->channel->center_freq);
AGNX_TRACE; AGNX_TRACE;