diff options
author | Fabio Estevam | 2014-12-29 18:05:44 -0200 |
---|---|---|
committer | Stefano Babic | 2014-12-30 14:10:39 +0100 |
commit | 87e47e905887b91c0505495cc6bbab70ba266d51 (patch) | |
tree | c79b78fc4ba5d0e1772d45ce9482da600ca80e03 | |
parent | 331ae846ad9fee532cf04268da76701093e4e4ed (diff) |
mx6slevk: Remove get_board_rev()
get_board_rev() just returns the cpu revision, which does not make it really
useful for distinguishing between revisions of the board.
Let's get rid of get_board_rev() as it is not being used with its correct
meaning.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
-rw-r--r-- | board/freescale/mx6slevk/mx6slevk.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/board/freescale/mx6slevk/mx6slevk.c b/board/freescale/mx6slevk/mx6slevk.c index 3834eec60e8..838ea6c0f0d 100644 --- a/board/freescale/mx6slevk/mx6slevk.c +++ b/board/freescale/mx6slevk/mx6slevk.c @@ -308,11 +308,6 @@ int board_init(void) return 0; } -u32 get_board_rev(void) -{ - return get_cpu_rev(); -} - int checkboard(void) { puts("Board: MX6SLEVK\n"); |