mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
p54: Fix compile warning
If any of the p54-based drivers are built with CONFIG_P54_LEDS not defined, the following warning is generated: CC [M] drivers/net/wireless/p54/main.o drivers/net/wireless/p54/main.c: In function ‘p54_register_common’: drivers/net/wireless/p54/main.c:614:21: warning: unused variable ‘priv’ Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
12873372fe
commit
fe0b7c616e
@ -611,7 +611,7 @@ EXPORT_SYMBOL_GPL(p54_init_common);
|
||||
|
||||
int p54_register_common(struct ieee80211_hw *dev, struct device *pdev)
|
||||
{
|
||||
struct p54_common *priv = dev->priv;
|
||||
struct p54_common __maybe_unused *priv = dev->priv;
|
||||
int err;
|
||||
|
||||
err = ieee80211_register_hw(dev);
|
||||
|
Loading…
Reference in New Issue
Block a user