diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2015-03-22 17:09:10 -0500 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-04-18 11:11:12 -0600 |
commit | 05c3e68f8518809616cd4ec5523d3f1e423ee41a (patch) | |
tree | 4d70ec32e316a273db986f8c8caf6a00aea45abb /common/cmd_bdinfo.c | |
parent | 85848f0377bc9f8703f2b07db51bd1eb88e2b3ba (diff) | |
download | u-boot-05c3e68f8518809616cd4ec5523d3f1e423ee41a.tar.gz u-boot-05c3e68f8518809616cd4ec5523d3f1e423ee41a.tar.xz u-boot-05c3e68f8518809616cd4ec5523d3f1e423ee41a.zip |
dm: eth: Add basic driver model support to Ethernet stack
First just add support for MAC drivers.
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/cmd_bdinfo.c')
-rw-r--r-- | common/cmd_bdinfo.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/cmd_bdinfo.c b/common/cmd_bdinfo.c index aa81da227b..b4cce25b06 100644 --- a/common/cmd_bdinfo.c +++ b/common/cmd_bdinfo.c @@ -34,6 +34,7 @@ static void print_eth(int idx) printf("%-12s= %s\n", name, val); } +#ifndef CONFIG_DM_ETH __maybe_unused static void print_eths(void) { @@ -52,6 +53,7 @@ static void print_eths(void) printf("current eth = %s\n", eth_get_name()); printf("ip_addr = %s\n", getenv("ipaddr")); } +#endif __maybe_unused static void print_lnum(const char *name, unsigned long long value) |