Arthur Heymans has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/69237 )
Change subject: nb/intel/ironlake: Remove set but unused variable ......................................................................
nb/intel/ironlake: Remove set but unused variable
Change-Id: I4892600bfec55830acae56d2b293947c2d9ddd07 Signed-off-by: Arthur Heymans arthur@aheymans.xyz --- M src/northbridge/intel/ironlake/raminit.c 1 file changed, 10 insertions(+), 10 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/37/69237/1
diff --git a/src/northbridge/intel/ironlake/raminit.c b/src/northbridge/intel/ironlake/raminit.c index 634ba90..d711cf6 100644 --- a/src/northbridge/intel/ironlake/raminit.c +++ b/src/northbridge/intel/ironlake/raminit.c @@ -711,7 +711,6 @@ int some_delay_1_ps; int some_delay_2_ps; int some_delay_2_halfcycles_ceil; - int some_delay_2_halfcycles_floor; int some_delay_3_ps; int some_delay_3_ps_rounded; int some_delay_1_cycle_ceil; @@ -771,17 +770,8 @@ halfcycle_ps(info) * some_delay_3_halfcycles >> 6; } } - some_delay_2_halfcycles_ceil = - (some_delay_2_ps + halfcycle_ps(info) - 1) / halfcycle_ps(info) - - 2 * (some_delay_1_cycle_ceil - 1); if (info->revision_flag_1 && some_delay_3_ps < 150) some_delay_2_halfcycles_ceil++; - some_delay_2_halfcycles_floor = some_delay_2_halfcycles_ceil; - if (info->revision < 0x10) - some_delay_2_halfcycles_floor = - some_delay_2_halfcycles_ceil - 1; - if (!info->revision_flag_1) - some_delay_2_halfcycles_floor++; info->some_delay_2_halfcycles_ceil = some_delay_2_halfcycles_ceil; info->some_delay_3_ps_rounded = some_delay_3_ps_rounded; if ((info->populated_ranks[0][0][0] && info->populated_ranks[0][1][0])