mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2024-12-29 09:13:38 +00:00
pcmcia: hide the MAC address helpers if !NET
pcmcia_get_mac_from_cis is only called from networking and
recent changes made it call dev_addr_mod() which is itself
only defined if NET.
Reported-by: kernel test robot <lkp@intel.com>
Fixes: adeef3e321
("net: constify netdev->dev_addr")
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
4dfb998264
commit
bd4b827cec
@ -386,7 +386,7 @@ size_t pcmcia_get_tuple(struct pcmcia_device *p_dev, cisdata_t code,
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL(pcmcia_get_tuple);
|
EXPORT_SYMBOL(pcmcia_get_tuple);
|
||||||
|
|
||||||
|
#ifdef CONFIG_NET
|
||||||
/*
|
/*
|
||||||
* pcmcia_do_get_mac() - internal helper for pcmcia_get_mac_from_cis()
|
* pcmcia_do_get_mac() - internal helper for pcmcia_get_mac_from_cis()
|
||||||
*
|
*
|
||||||
@ -431,3 +431,4 @@ int pcmcia_get_mac_from_cis(struct pcmcia_device *p_dev, struct net_device *dev)
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL(pcmcia_get_mac_from_cis);
|
EXPORT_SYMBOL(pcmcia_get_mac_from_cis);
|
||||||
|
|
||||||
|
#endif /* CONFIG_NET */
|
||||||
|
Loading…
Reference in New Issue
Block a user