:orphan: .. title:: CONFIG_PHY_INIT_PRIORITY .. kconfig:: CONFIG_PHY_INIT_PRIORITY CONFIG_PHY_INIT_PRIORITY ######################## *Ethernet PHY driver init priority* Type: ``int`` Help ==== .. code-block:: none Ethernet PHY device driver initialization priority. Do not mess with it unless you know what you are doing. Note that the priority needs to be lower than the net stack so that it can start before the networking sub-system. Direct dependencies =================== \ :kconfig:`NET_L2_ETHERNET ` && \ :kconfig:`NET_L2_ETHERNET ` *(Includes any dependencies from ifs and menus.)* Default ======= - 70 Kconfig definition ================== At ``/ethernet/phy/Kconfig:15`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:20`` → ``/ethernet/Kconfig:62`` Menu path: (Top) → Device Drivers → Ethernet Drivers → Ethernet PHY Drivers .. code-block:: kconfig config PHY_INIT_PRIORITY int "Ethernet PHY driver init priority" default 70 depends on NET_L2_ETHERNET && NET_L2_ETHERNET help Ethernet PHY device driver initialization priority. Do not mess with it unless you know what you are doing. Note that the priority needs to be lower than the net stack so that it can start before the networking sub-system. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*