amd/mct/ddr3: Fix unintended sign extension warning
An unintended sign extension warning was thrown by Coverity. Explicitly state the length of the constant multiplier. Found-by: Coverity Scan #1347342 Change-Id: Icd42eec13be04fc5fd2ffc85320cbadafc852148 Signed-off-by: Timothy Pearson <tpearson@raptorengineering.com> Reviewed-on: https://review.coreboot.org/18077 Reviewed-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net> Tested-by: build bot (Jenkins) Reviewed-by: Nico Huber <nico.h@gmx.de> Tested-by: Raptor Engineering Automated Test Stand <noreply@raptorengineeringinc.com>
This commit is contained in:
parent
590a3e1f6c
commit
88a2e3b3bf
|
@ -2474,10 +2474,10 @@ static void set_up_cc6_storage_fam15(struct MCTStatStruc *pMCTstat,
|
||||||
|
|
||||||
if (interleaved)
|
if (interleaved)
|
||||||
/* Move upper limit down by 16M * the number of nodes */
|
/* Move upper limit down by 16M * the number of nodes */
|
||||||
max_range_limit -= (0x1000000 * num_nodes);
|
max_range_limit -= (0x1000000ULL * num_nodes);
|
||||||
else
|
else
|
||||||
/* Move upper limit down by 16M */
|
/* Move upper limit down by 16M */
|
||||||
max_range_limit -= 0x1000000;
|
max_range_limit -= 0x1000000ULL;
|
||||||
|
|
||||||
printk(BIOS_INFO, "%s:\tnew max_range_limit: %16llx\n",
|
printk(BIOS_INFO, "%s:\tnew max_range_limit: %16llx\n",
|
||||||
__func__, max_range_limit);
|
__func__, max_range_limit);
|
||||||
|
|
Loading…
Reference in New Issue