mirror of
https://github.com/torvalds/linux.git
synced 2026-05-05 23:05:25 -04:00
net: stmmac: unexport stmmac_init_tstamp_counter()
Nothing outside of stmmac_main.c makes use of stmmac_init_tstamp_counter(), so there's no point exporting it for modules, or even having it non-static. Remove the export and make it static. Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
committed by
Jakub Kicinski
parent
586f1aebc9
commit
ff2e19d569
@@ -392,7 +392,6 @@ int stmmac_pcs_setup(struct net_device *ndev);
|
||||
void stmmac_pcs_clean(struct net_device *ndev);
|
||||
void stmmac_set_ethtool_ops(struct net_device *netdev);
|
||||
|
||||
int stmmac_init_tstamp_counter(struct stmmac_priv *priv, u32 systime_flags);
|
||||
void stmmac_ptp_register(struct stmmac_priv *priv);
|
||||
void stmmac_ptp_unregister(struct stmmac_priv *priv);
|
||||
int stmmac_xdp_open(struct net_device *dev);
|
||||
|
||||
@@ -726,7 +726,8 @@ static int stmmac_hwtstamp_get(struct net_device *dev,
|
||||
* Will be rerun after resuming from suspend, case in which the timestamping
|
||||
* flags updated by stmmac_hwtstamp_set() also need to be restored.
|
||||
*/
|
||||
int stmmac_init_tstamp_counter(struct stmmac_priv *priv, u32 systime_flags)
|
||||
static int stmmac_init_tstamp_counter(struct stmmac_priv *priv,
|
||||
u32 systime_flags)
|
||||
{
|
||||
bool xmac = priv->plat->has_gmac4 || priv->plat->has_xgmac;
|
||||
struct timespec64 now;
|
||||
@@ -770,7 +771,6 @@ int stmmac_init_tstamp_counter(struct stmmac_priv *priv, u32 systime_flags)
|
||||
|
||||
return 0;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(stmmac_init_tstamp_counter);
|
||||
|
||||
/**
|
||||
* stmmac_init_ptp - init PTP
|
||||
|
||||
Reference in New Issue
Block a user