diff options
| author | Masahiro Yamada <[email protected]> | 2014-04-04 20:09:58 +0900 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2014-05-12 15:19:45 -0400 |
| commit | 8e2615752ee6d5daf8ce2e1e599a0512750f24b9 (patch) | |
| tree | 41ee1ead95b1cafc60195a05e916c9398743d72e /include | |
| parent | 3e41c54ad8099951d57c3c5a0f5ebc6e8becf70c (diff) | |
bd_info: remove bi_barudrate member from struct bd_info
gd->bd->bi_baudrate is a copy of gd->baudrate.
Since baudrate is a common feature for all architectures,
keep gd->baudrate only.
It is true that bi_baudrate was passed to the kernel in that structure
but it was a long time ago.
Signed-off-by: Masahiro Yamada <[email protected]>
Cc: Tom Rini <[email protected]>
Cc: Simon Glass <[email protected]>
Cc: Wolfgang Denk <[email protected]>
Cc: Heiko Schocher <[email protected]>
Acked-by: Michal Simek <[email protected]> (For microblaze)
Diffstat (limited to 'include')
| -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 c18e4ca27a3..62cb1eabc1f 100644 --- a/include/asm-generic/u-boot.h +++ b/include/asm-generic/u-boot.h @@ -66,7 +66,6 @@ typedef struct bd_info { unsigned long bi_ipbfreq; /* IPB Bus Freq, in MHz */ unsigned long bi_pcifreq; /* PCI Bus Freq, in MHz */ #endif - unsigned int bi_baudrate; /* Console Baudrate */ #if defined(CONFIG_405) || \ defined(CONFIG_405GP) || \ defined(CONFIG_405EP) || \ |
