diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2015-09-13 13:06:45 -0300 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2015-09-20 09:47:59 +0200 |
commit | e0ece173045f9083ddc8997ee73db0099dabc634 (patch) | |
tree | 615e0ecbcd3c1ddb28fe427c3acd9253cd24b406 /board | |
parent | 0df2f01d42409da80799a0dbe6f08c673c13f93d (diff) | |
download | u-boot-imx-e0ece173045f9083ddc8997ee73db0099dabc634.zip u-boot-imx-e0ece173045f9083ddc8997ee73db0099dabc634.tar.gz u-boot-imx-e0ece173045f9083ddc8997ee73db0099dabc634.tar.bz2 |
mx7dsabresd: Remove get_board_rev()
get_board_rev() is not actually providing the board revision.
It just returns the CPU revision instead.
As the CPU revision is already printed on boot, there is no
reason to have get_board_rev(), so let's remove it.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/mx7dsabresd/mx7dsabresd.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/board/freescale/mx7dsabresd/mx7dsabresd.c b/board/freescale/mx7dsabresd/mx7dsabresd.c index d7e4589..bb823f5 100644 --- a/board/freescale/mx7dsabresd/mx7dsabresd.c +++ b/board/freescale/mx7dsabresd/mx7dsabresd.c @@ -485,11 +485,6 @@ int board_late_init(void) return 0; } -u32 get_board_rev(void) -{ - return get_cpu_rev(); -} - int checkboard(void) { puts("Board: i.MX7D SABRESD\n"); |