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/LaCie | |
parent | 015e3348fc3f0f20fd9286bf245e26212568ec93 (diff) | |
download | u-boot-5e6267af31165cdc6d918fd8aff8ae12a30ec9f8.tar.gz u-boot-5e6267af31165cdc6d918fd8aff8ae12a30ec9f8.tar.bz2 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/LaCie')
-rw-r--r-- | board/LaCie/edminiv2/edminiv2.c | 1 | ||||
-rw-r--r-- | board/LaCie/net2big_v2/net2big_v2.c | 1 | ||||
-rw-r--r-- | board/LaCie/netspace_v2/netspace_v2.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/board/LaCie/edminiv2/edminiv2.c b/board/LaCie/edminiv2/edminiv2.c index b68e18e034..b5ffe8162f 100644 --- a/board/LaCie/edminiv2/edminiv2.c +++ b/board/LaCie/edminiv2/edminiv2.c @@ -9,6 +9,7 @@ #include <common.h> #include <miiphy.h> +#include <net.h> #include <asm/arch/orion5x.h> #include "../common/common.h" #include <spl.h> diff --git a/board/LaCie/net2big_v2/net2big_v2.c b/board/LaCie/net2big_v2/net2big_v2.c index 686608d25a..50305656e8 100644 --- a/board/LaCie/net2big_v2/net2big_v2.c +++ b/board/LaCie/net2big_v2/net2big_v2.c @@ -12,6 +12,7 @@ #include <command.h> #include <env.h> #include <i2c.h> +#include <net.h> #include <asm/mach-types.h> #include <asm/arch/cpu.h> #include <asm/arch/soc.h> diff --git a/board/LaCie/netspace_v2/netspace_v2.c b/board/LaCie/netspace_v2/netspace_v2.c index bd7ab22948..b7ae58c645 100644 --- a/board/LaCie/netspace_v2/netspace_v2.c +++ b/board/LaCie/netspace_v2/netspace_v2.c @@ -11,6 +11,7 @@ #include <common.h> #include <command.h> #include <env.h> +#include <net.h> #include <asm/mach-types.h> #include <asm/arch/cpu.h> #include <asm/arch/soc.h> |