aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/device/dram/ddr2.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/device/dram/ddr2.c b/src/device/dram/ddr2.c
index 6f43563b6e..2dab681754 100644
--- a/src/device/dram/ddr2.c
+++ b/src/device/dram/ddr2.c
@@ -194,16 +194,22 @@ static int spd_decode_tRR_time(u32 *tRR, u8 c)
return CB_ERR;
case 0x80:
*tRR = 15625 << 8;
+ break;
case 0x81:
*tRR = 15625 << 6;
+ break;
case 0x82:
*tRR = 15625 << 7;
+ break;
case 0x83:
*tRR = 15625 << 9;
+ break;
case 0x84:
*tRR = 15625 << 10;
+ break;
case 0x85:
*tRR = 15625 << 11;
+ break;
}
return CB_SUCCESS;
}