nb/intel/sandybridge: Replace memset with initializer

There's no need to use `memset` here.

Change-Id: I0478bc3ff25b75bf0b554aa83ead6a63fcbd975c
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/49064
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
Angel Pons 2021-01-03 14:55:12 +01:00 committed by Felix Held
parent 30b12e905f
commit 86e3d748f8
1 changed files with 1 additions and 3 deletions

View File

@ -1137,11 +1137,9 @@ static void find_rcven_pi_coarse(ramctr_timing *ctrl, int channel, int slotrank,
static void fine_tune_rcven_pi(ramctr_timing *ctrl, int channel, int slotrank, int *upperA) static void fine_tune_rcven_pi(ramctr_timing *ctrl, int channel, int slotrank, int *upperA)
{ {
int rcven_delta; int rcven_delta;
int statistics[NUM_LANES][51]; int statistics[NUM_LANES][51] = {0};
int lane, i; int lane, i;
memset(statistics, 0, sizeof(statistics));
for (rcven_delta = -25; rcven_delta <= 25; rcven_delta++) { for (rcven_delta = -25; rcven_delta <= 25; rcven_delta++) {
FOR_ALL_LANES { FOR_ALL_LANES {