mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 16:12:02 +00:00
net: fec: Add a fec_enet_clear_ethtool_stats() stub for CONFIG_M5272
Commit2b30842b23
("net: fec: Clear and enable MIB counters on imx51") introduced fec_enet_clear_ethtool_stats(), but missed to add a stub for the CONFIG_M5272=y case, causing build failure for the m5272c3_defconfig. Add the missing empty stub to fix the build failure. Fixes: Commit2b30842b23
("net: fec: Clear and enable MIB counters on imx51") Reported-by: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
89dfba3e1b
commit
41e8e40458
@ -2379,6 +2379,10 @@ static void fec_enet_clear_ethtool_stats(struct net_device *dev)
|
|||||||
static inline void fec_enet_update_ethtool_stats(struct net_device *dev)
|
static inline void fec_enet_update_ethtool_stats(struct net_device *dev)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline void fec_enet_clear_ethtool_stats(struct net_device *dev)
|
||||||
|
{
|
||||||
|
}
|
||||||
#endif /* !defined(CONFIG_M5272) */
|
#endif /* !defined(CONFIG_M5272) */
|
||||||
|
|
||||||
/* ITR clock source is enet system clock (clk_ahb).
|
/* ITR clock source is enet system clock (clk_ahb).
|
||||||
|
Loading…
Reference in New Issue
Block a user