mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 07:31:15 +00:00
dm: ddr: socfpga: don't assign values that are not used
The values of left_edge[0] and right_edge[0] are overwritten before they
are used. Remove the superfluous assignments.
Fixes: 285b3cb939
("dm: ddr: socfpga: fix gen5 ddr driver to not use bss")
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
277b879906
commit
f0bbcdef1b
1 changed files with 0 additions and 7 deletions
|
@ -3202,13 +3202,6 @@ rw_mgr_mem_calibrate_writes_center(struct socfpga_sdrseq *seq,
|
|||
/* Centre DM */
|
||||
debug_cond(DLEVEL >= 2, "%s:%d write_center: DM\n", __func__, __LINE__);
|
||||
|
||||
/*
|
||||
* Set the left and right edge of each bit to an illegal value.
|
||||
* Use (seq->iocfg->io_out1_delay_max + 1) as an illegal value.
|
||||
*/
|
||||
left_edge[0] = seq->iocfg->io_out1_delay_max + 1;
|
||||
right_edge[0] = seq->iocfg->io_out1_delay_max + 1;
|
||||
|
||||
/* Search for the/part of the window with DM shift. */
|
||||
search_window(seq, 1, rank_bgn, write_group, &bgn_curr, &end_curr,
|
||||
&bgn_best, &end_best, &win_best, 0);
|
||||
|
|
Loading…
Reference in a new issue