diff options
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/intel/common/basecode/ramtop/ramtop.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/intel/common/basecode/ramtop/ramtop.c b/src/soc/intel/common/basecode/ramtop/ramtop.c index bf85fa8efc..f6aa4eadd4 100644 --- a/src/soc/intel/common/basecode/ramtop/ramtop.c +++ b/src/soc/intel/common/basecode/ramtop/ramtop.c @@ -23,9 +23,9 @@ #error "The `ramtop` CMOS entry needs to be byte aligned, check your cmos.layout." #endif // CMOS_VSTART_ramtop % 8 != 0 -#if CMOS_VLEN_ramtop != 12 -#error "CMOS length for RAMTOP_CMOS bytes are not correct, check your cmos.layout" -#endif +#if CMOS_VLEN_ramtop != (10 * 8) +#error "The `ramtop` CMOS entry needs to be 10 bytes long, check your cmos.layout." +#endif // CMOS_VLEN_ramtop != (10 * 8) #else #define CMOS_VSTART_ramtop 800 |