diff options
author | Simon Glass <sjg@chromium.org> | 2019-12-28 10:44:48 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-01-17 13:26:50 -0500 |
commit | 5e6267af31165cdc6d918fd8aff8ae12a30ec9f8 (patch) | |
tree | f0a213fe4c520420a0cc74737f602d13425f877d /board/Seagate | |
parent | 015e3348fc3f0f20fd9286bf245e26212568ec93 (diff) | |
download | u-boot-5e6267af31165cdc6d918fd8aff8ae12a30ec9f8.tar.gz u-boot-5e6267af31165cdc6d918fd8aff8ae12a30ec9f8.tar.xz u-boot-5e6267af31165cdc6d918fd8aff8ae12a30ec9f8.zip |
common: Move reset_phy() to net.h
This is a network function so let's move it into that header.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/Seagate')
-rw-r--r-- | board/Seagate/dockstar/dockstar.c | 1 | ||||
-rw-r--r-- | board/Seagate/goflexhome/goflexhome.c | 1 | ||||
-rw-r--r-- | board/Seagate/nas220/nas220.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/board/Seagate/dockstar/dockstar.c b/board/Seagate/dockstar/dockstar.c index 40e5dc7034..5a8c6e282b 100644 --- a/board/Seagate/dockstar/dockstar.c +++ b/board/Seagate/dockstar/dockstar.c @@ -10,6 +10,7 @@ #include <common.h> #include <miiphy.h> +#include <net.h> #include <asm/arch/soc.h> #include <asm/arch/mpp.h> #include <asm/arch/cpu.h> diff --git a/board/Seagate/goflexhome/goflexhome.c b/board/Seagate/goflexhome/goflexhome.c index 42b51eb29a..1e4477aa5f 100644 --- a/board/Seagate/goflexhome/goflexhome.c +++ b/board/Seagate/goflexhome/goflexhome.c @@ -13,6 +13,7 @@ #include <common.h> #include <miiphy.h> +#include <net.h> #include <asm/mach-types.h> #include <asm/arch/soc.h> #include <asm/arch/mpp.h> diff --git a/board/Seagate/nas220/nas220.c b/board/Seagate/nas220/nas220.c index 1e6c43b1fa..99462052f0 100644 --- a/board/Seagate/nas220/nas220.c +++ b/board/Seagate/nas220/nas220.c @@ -10,6 +10,7 @@ #include <common.h> #include <miiphy.h> +#include <net.h> #include <asm/mach-types.h> #include <asm/arch/soc.h> #include <asm/arch/mpp.h> |