diff options
author | Simon Glass <sjg@chromium.org> | 2020-05-10 14:16:27 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-06-25 13:24:10 -0400 |
commit | 4ac06d352592b79b2a07747073111c12c7ef9663 (patch) | |
tree | 51e55639f14602ee5dd81ae66131fb6ba0a3f694 | |
parent | b46f989bb7e6badf114b42a5c184b99ae8e329c4 (diff) | |
download | platform_external_u-boot-4ac06d352592b79b2a07747073111c12c7ef9663.tar.gz platform_external_u-boot-4ac06d352592b79b2a07747073111c12c7ef9663.tar.bz2 platform_external_u-boot-4ac06d352592b79b2a07747073111c12c7ef9663.zip |
bdinfo: m68k: Drop bd_info->bi_ipbfreq
This field is not used anymore. Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
-rw-r--r-- | include/asm-generic/u-boot.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/asm-generic/u-boot.h b/include/asm-generic/u-boot.h index 6f749736f1..b496e55964 100644 --- a/include/asm-generic/u-boot.h +++ b/include/asm-generic/u-boot.h @@ -61,7 +61,6 @@ typedef struct bd_info { unsigned long bi_vco; /* VCO Out from PLL, in MHz */ #endif #if defined(CONFIG_M68K) - unsigned long bi_ipbfreq; /* IPB Bus Freq, in MHz */ unsigned long bi_pcifreq; /* PCI Bus Freq, in MHz */ #endif #if defined(CONFIG_EXTRA_CLOCK) |