aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/asrock/h110m
diff options
context:
space:
mode:
authorWim Vervoorn <wvervoorn@eltan.com>2019-12-11 11:54:33 +0100
committerPatrick Georgi <pgeorgi@google.com>2019-12-16 09:50:55 +0000
commit116a837818897d5f1f0c76021d48532133e8f5f6 (patch)
treefa023295e4dc900dd0eeb5bce2228260dbd4a14c /src/mainboard/asrock/h110m
parent03f78b069d4f4fe0aa2a3ec67117e0c478da3b72 (diff)
mb: Use fixed value in RcompTarget structure
Now RCOMP_TARGET_PARAMS is defined and used once in the definition of the RcompTarget structure. All other structures in these functions use a fixed value. Replace RCOMP_TARGET_PARAMS with fixed value. BUG=N/A TEST=build Change-Id: Ibe7c72c65975354433e9a0c613bda715eb782412 Signed-off-by: Wim Vervoorn <wvervoorn@eltan.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/37658 Reviewed-by: Frans Hendriks <fhendriks@eltan.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/asrock/h110m')
-rw-r--r--src/mainboard/asrock/h110m/romstage.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mainboard/asrock/h110m/romstage.c b/src/mainboard/asrock/h110m/romstage.c
index efbc650bf3..a068713fc2 100644
--- a/src/mainboard/asrock/h110m/romstage.c
+++ b/src/mainboard/asrock/h110m/romstage.c
@@ -18,8 +18,6 @@
#include <string.h>
#include <spd_bin.h>
-#define RCOMP_TARGET_PARAMS 0x5
-
static void mainboard_fill_dq_map_data(void *dq_map_ch0, void *dq_map_ch1)
{
/* DQ byte map */
@@ -53,7 +51,7 @@ static void mainboard_fill_rcomp_res_data(void *rcomp_ptr)
static void mainboard_fill_rcomp_strength_data(void *rcomp_strength_ptr)
{
/* Rcomp target */
- static const u16 RcompTarget[RCOMP_TARGET_PARAMS] = {
+ static const u16 RcompTarget[5] = {
100, 40, 40, 23, 40 };
memcpy(rcomp_strength_ptr, RcompTarget, sizeof(RcompTarget));
}