diff options
author | Tom Rini <trini@konsulko.com> | 2020-06-04 16:01:29 -0400 |
---|---|---|
committer | Lokesh Vutla <lokeshvutla@ti.com> | 2020-06-16 17:00:02 +0530 |
commit | f18f823c130cbfeb3124c1d62baad857fc0e8d77 (patch) | |
tree | d28284ef3464c1c9d71364683a58fbc447984297 /board/ti/am335x | |
parent | e76e85c9f4728e4765c90cef4422d7c9172161c7 (diff) | |
download | u-boot-f18f823c130cbfeb3124c1d62baad857fc0e8d77.tar.gz u-boot-f18f823c130cbfeb3124c1d62baad857fc0e8d77.tar.bz2 u-boot-f18f823c130cbfeb3124c1d62baad857fc0e8d77.zip |
board: ti: am335x_evm: Remove duplicate setting of bd_ram_ofs member
With clang we get a report that we are setting this member twice.
Fortunately it is to the same value, so drop the hard-coded value line.
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Grygorii Strashko <grygorii.strashko@ti.com>
Diffstat (limited to 'board/ti/am335x')
-rw-r--r-- | board/ti/am335x/board.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/board/ti/am335x/board.c b/board/ti/am335x/board.c index 4199bee2e6..123ccaac44 100644 --- a/board/ti/am335x/board.c +++ b/board/ti/am335x/board.c @@ -912,7 +912,6 @@ struct cpsw_platform_data am335_eth_data = { .slaves = 2, .slave_data = slave_data, .ale_entries = 1024, - .bd_ram_ofs = 0x2000, .mac_control = 0x20, .active_slave = 0, .mdio_base = 0x4a101000, |