xref: /openbmc/linux/drivers/net/phy/stubs.c (revision 60495b66)
1*60495b66SVladimir Oltean // SPDX-License-Identifier: GPL-2.0+
2*60495b66SVladimir Oltean /*
3*60495b66SVladimir Oltean  * Stubs for PHY library functionality called by the core network stack.
4*60495b66SVladimir Oltean  * These are necessary because CONFIG_PHYLIB can be a module, and built-in
5*60495b66SVladimir Oltean  * code cannot directly call symbols exported by modules.
6*60495b66SVladimir Oltean  */
7*60495b66SVladimir Oltean #include <linux/phylib_stubs.h>
8*60495b66SVladimir Oltean 
9*60495b66SVladimir Oltean const struct phylib_stubs *phylib_stubs;
10*60495b66SVladimir Oltean EXPORT_SYMBOL_GPL(phylib_stubs);
11