summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <tpearson@raptorengineeringinc.com>2015-09-08 16:08:45 -0500
committerPatrick Georgi <pgeorgi@google.com>2015-10-23 19:58:48 +0200
commit76d4636e61da31651c2aee417f4bb0fb37bd8c66 (patch)
tree0d325051c2257c08757590c0ee5fd826117f3499
parent964aa839caa1a667423aa796b3e7f5039062f631 (diff)
downloadcoreboot-76d4636e61da31651c2aee417f4bb0fb37bd8c66.tar.gz
coreboot-76d4636e61da31651c2aee417f4bb0fb37bd8c66.tar.bz2
coreboot-76d4636e61da31651c2aee417f4bb0fb37bd8c66.zip
northbridge/amd/amdmct/mct_ddr3: Fix curly brace style violations
Change-Id: Ic27d404a7ed76b58043037e8b66097db6d664501 Signed-off-by: Timothy Pearson <tpearson@raptorengineeringinc.com> Reviewed-on: http://review.coreboot.org/11942 Reviewed-by: Edward O'Callaghan <edward.ocallaghan@koparo.com> Tested-by: build bot (Jenkins)
-rw-r--r--src/northbridge/amd/amdmct/mct_ddr3/mhwlc_d.c37
1 files changed, 10 insertions, 27 deletions
diff --git a/src/northbridge/amd/amdmct/mct_ddr3/mhwlc_d.c b/src/northbridge/amd/amdmct/mct_ddr3/mhwlc_d.c
index 212a34805773..8e7e70c4c724 100644
--- a/src/northbridge/amd/amdmct/mct_ddr3/mhwlc_d.c
+++ b/src/northbridge/amd/amdmct/mct_ddr3/mhwlc_d.c
@@ -831,28 +831,19 @@ void setWLByteDelay(sDCTStruct *pDCTData, u8 ByteLane, u8 dimm, u8 targetAddr)
tempB = 0;
offsetAddr = (u8)(3 * dimm);
- if (ByteLane < 2)
- {
+ if (ByteLane < 2) {
tempB = (u8)(16 * ByteLane);
addr = DRAM_CONT_ADD_DQS_TIMING_CTRL_BL_01;
- }
- else if (ByteLane <4)
- {
+ } else if (ByteLane <4) {
tempB = (u8)(16 * ByteLane);
addr = DRAM_CONT_ADD_DQS_TIMING_CTRL_BL_01 + 1;
- }
- else if (ByteLane <6)
- {
+ } else if (ByteLane <6) {
tempB = (u8)(16 * ByteLane);
addr = DRAM_CONT_ADD_DQS_TIMING_CTRL_BL_45;
- }
- else if (ByteLane <8)
- {
+ } else if (ByteLane <8) {
tempB = (u8)(16 * ByteLane);
addr = DRAM_CONT_ADD_DQS_TIMING_CTRL_BL_45 + 1;
- }
- else
- {
+ } else {
tempB = 0;
addr = DRAM_CONT_ADD_DQS_TIMING_CTRL_BL_01 + 2;
}
@@ -896,19 +887,14 @@ void getWLByteDelay(sDCTStruct *pDCTData, u8 ByteLane, u8 dimm)
u32 addr, fine, gross;
tempB = 0;
index = (u8)(MAX_BYTE_LANES*dimm);
- if (ByteLane < 4)
- {
+ if (ByteLane < 4) {
tempB = (u8)(8 * ByteLane);
addr = DRAM_CONT_ADD_PHASE_REC_CTRL_LOW;
- }
- else if (ByteLane < 8)
- {
+ } else if (ByteLane < 8) {
tempB1 = (u8)(ByteLane - 4);
tempB = (u8)(8 * tempB1);
addr = DRAM_CONT_ADD_PHASE_REC_CTRL_HIGH;
- }
- else
- {
+ } else {
tempB = 0;
addr = DRAM_CONT_ADD_ECC_PHASE_REC_CTRL;
}
@@ -924,16 +910,13 @@ void getWLByteDelay(sDCTStruct *pDCTData, u8 ByteLane, u8 dimm)
/* Adjust seed gross delay overflow (greater than 3):
* - Adjust the trained gross delay to the original seed gross delay.
*/
- if(pDCTData->WLGrossDelay[index+ByteLane] >= 3)
- {
+ if (pDCTData->WLGrossDelay[index+ByteLane] >= 3) {
gross += pDCTData->WLGrossDelay[index+ByteLane];
if(pDCTData->WLGrossDelay[index+ByteLane] & 1)
gross -= 1;
else
gross -= 2;
- }
- else if((pDCTData->WLGrossDelay[index+ByteLane] == 0) && (gross == 3))
- {
+ } else if ((pDCTData->WLGrossDelay[index+ByteLane] == 0) && (gross == 3)) {
/* If seed gross delay is 0 but PRE result gross delay is 3, it is negative.
* We will then round the negative number to 0.
*/