diff options
| author | Wolfgang Denk <[email protected]> | 2011-09-05 05:26:27 +0000 |
|---|---|---|
| committer | Wolfgang Denk <[email protected]> | 2011-09-07 22:02:07 +0200 |
| commit | 6f0d7ae26564a9beb429bb72b2ccf65e73816835 (patch) | |
| tree | 3edd9c04dd6ad5f96e15dcf55eb5480fb2c6dab0 | |
| parent | b66521a6c1f6721cd7c5857718f3dfe585fb6594 (diff) | |
da8xxevm: Fix warning: unused variable 'val'
Signed-off-by: Wolfgang Denk <[email protected]>
Cc: Albert ARIBAUD <[email protected]>
Cc: Sandeep Paulraj <[email protected]>
Cc: Sudhakar Rajashekhara <[email protected]>
| -rw-r--r-- | board/davinci/da8xxevm/da850evm.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/board/davinci/da8xxevm/da850evm.c b/board/davinci/da8xxevm/da850evm.c index 2f950e7bdf6..46924d349b8 100644 --- a/board/davinci/da8xxevm/da850evm.c +++ b/board/davinci/da8xxevm/da850evm.c @@ -280,12 +280,14 @@ u32 get_board_rev(void) int board_init(void) { +#ifdef CONFIG_USE_NOR u32 val; +#endif + #ifndef CONFIG_USE_IRQ irq_init(); #endif - #ifdef CONFIG_NAND_DAVINCI /* * NAND CS setup - cycle counts based on da850evm NAND timings in the |
