Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fec53af5 authored by Tony Luck's avatar Tony Luck Committed by Mauro Carvalho Chehab
Browse files

sb_edac: Fix typo computing number of banks



Code will always think there are 16 banks because of a typo

Reported-by: Misha
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
Acked-by: default avatarAristeu Rozanski <aris@redhat.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent 1f39581a
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -901,7 +901,7 @@ static int get_dimm_config(struct mem_ctl_info *mci)
	else
	else
		edac_dbg(0, "Memory is unregistered\n");
		edac_dbg(0, "Memory is unregistered\n");


	if (mtype == MEM_DDR4 || MEM_RDDR4)
	if (mtype == MEM_DDR4 || mtype == MEM_RDDR4)
		banks = 16;
		banks = 16;
	else
	else
		banks = 8;
		banks = 8;