diff options
| author | Tom Rini <[email protected]> | 2017-04-18 22:26:35 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2017-05-09 09:11:04 -0400 |
| commit | 85ea850976daea57c8045f3569566fad5ce9fe0f (patch) | |
| tree | bc8f3423eca938d212a763d8e03ebbedf9822382 | |
| parent | 78df5e1ed0b6bf6919339d625abccea405d29167 (diff) | |
p1_p2_rdb: Fix unused variable warning
With gcc-6 we see a warning that sysclk_tbl is defined but unused, so
remove it.
Cc: York Sun <[email protected]>
Signed-off-by: Tom Rini <[email protected]>
Reviewed-by: York Sun <[email protected]>
| -rw-r--r-- | board/freescale/p1_p2_rdb_pc/spl.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/board/freescale/p1_p2_rdb_pc/spl.c b/board/freescale/p1_p2_rdb_pc/spl.c index 1cf3497aa68..ca7ba5754e2 100644 --- a/board/freescale/p1_p2_rdb_pc/spl.c +++ b/board/freescale/p1_p2_rdb_pc/spl.c @@ -17,11 +17,6 @@ DECLARE_GLOBAL_DATA_PTR; -static const u32 sysclk_tbl[] = { - 66666000, 7499900, 83332500, 8999900, - 99999000, 11111000, 12499800, 13333200 -}; - phys_size_t get_effective_memsize(void) { return CONFIG_SYS_L2_SIZE; |
