diff options
-rw-r--r-- | src/northbridge/amd/amdmct/wrappers/mcti.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/northbridge/amd/amdmct/wrappers/mcti.h b/src/northbridge/amd/amdmct/wrappers/mcti.h index 762ef11f44..92979ab232 100644 --- a/src/northbridge/amd/amdmct/wrappers/mcti.h +++ b/src/northbridge/amd/amdmct/wrappers/mcti.h @@ -47,7 +47,11 @@ UPDATE AS NEEDED #endif #ifndef MAX_DIMMS_SUPPORTED -#define MAX_DIMMS_SUPPORTED 8 +#if IS_ENABLED(CONFIG_DIMM_DDR3) + #define MAX_DIMMS_SUPPORTED 6 +#else + #define MAX_DIMMS_SUPPORTED 8 +#endif #endif #ifndef MAX_CS_SUPPORTED |