diff options
Diffstat (limited to 'src/device/mdio.c')
-rw-r--r-- | src/device/mdio.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/device/mdio.c b/src/device/mdio.c new file mode 100644 index 0000000000..9f560e6bdf --- /dev/null +++ b/src/device/mdio.c @@ -0,0 +1,16 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#include <console/console.h> +#include <device/device.h> +#include <device/mdio.h> +#include <stddef.h> + +const struct mdio_bus_operations *dev_get_mdio_ops(struct device *dev) +{ + if (!dev || !dev->ops || !dev->ops->ops_mdio) { + printk(BIOS_ERR, "Could not get MDIO operations.\n"); + return NULL; + } + + return dev->ops->ops_mdio; +} |