diff options
author | Graeme Russ <graeme.russ@gmail.com> | 2010-10-07 20:03:17 +1100 |
---|---|---|
committer | Graeme Russ <graeme.russ@gmail.com> | 2010-10-07 20:03:17 +1100 |
commit | 458379d674f256d32132e29c20a223a3c39b9e34 (patch) | |
tree | cbb198f0f6016d959a1208280c6a9dde51d4d338 | |
parent | d6288664743cdd4824cb877ca424619c827c1256 (diff) | |
download | u-boot-imx-458379d674f256d32132e29c20a223a3c39b9e34.zip u-boot-imx-458379d674f256d32132e29c20a223a3c39b9e34.tar.gz u-boot-imx-458379d674f256d32132e29c20a223a3c39b9e34.tar.bz2 |
x86: Remove bi_env from do_bdinfo
Commit 55e97429d1e6cf0976711e4e0f29ea924b7e5917 removed the definition
from /arch/i386/include/asm/u-boot.h but not its usage in do_bdinfo()
-rw-r--r-- | common/cmd_bdinfo.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/common/cmd_bdinfo.c b/common/cmd_bdinfo.c index 6b611b1..1326c8f 100644 --- a/common/cmd_bdinfo.c +++ b/common/cmd_bdinfo.c @@ -385,7 +385,6 @@ int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) bd_t *bd = gd->bd; char buf[32]; - print_num ("env_t", (ulong)bd->bi_env); print_num ("boot_params", (ulong)bd->bi_boot_params); print_num ("bi_memstart", bd->bi_memstart); print_num ("bi_memsize", bd->bi_memsize); |