1# Copyright 2024 Microchip Technology Inc
2# SPDX-License-Identifier: Apache-2.0
3
4menuconfig MDIO_LAN865X
5	bool "LAN865X MDIO driver"
6	default y
7	depends on DT_HAS_MICROCHIP_LAN865X_MDIO_ENABLED
8	depends on ETH_LAN865X
9	help
10	  Enable LAN865X MDIO driver.
11
12if MDIO_LAN865X
13
14config MDIO_LAN865X_INIT_PRIORITY
15	int "LAN865X MDIO init priority"
16	default 81
17	help
18	  LAN865X MDIO device driver initialization priority.
19
20endif
21