mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
f125e3cc12
This header file should not be included in other header files. Remove it and use a forward declaration instead. Signed-off-by: Simon Glass <sjg@chromium.org>
18 lines
387 B
C
18 lines
387 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright 2020 NXP
|
|
*/
|
|
|
|
#ifndef _eth_phy_h_
|
|
#define _eth_phy_h_
|
|
|
|
#include <phy.h>
|
|
|
|
struct udevice;
|
|
|
|
int eth_phy_binds_nodes(struct udevice *eth_dev);
|
|
int eth_phy_set_mdio_bus(struct udevice *eth_dev, struct mii_dev *mdio_bus);
|
|
struct mii_dev *eth_phy_get_mdio_bus(struct udevice *eth_dev);
|
|
int eth_phy_get_addr(struct udevice *dev);
|
|
|
|
#endif
|