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

Commit 582a8996 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

i3200_edac: Fix memory rank size



commit a895bf8b incorrectly
changed the logic that fills the memory bank size. Fix it.

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 979570e0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -391,7 +391,7 @@ static int i3200_probe1(struct pci_dev *pdev, int dev_idx)
		for (j = 0; j < nr_channels; j++) {
			struct dimm_info *dimm = csrow->channels[j]->dimm;

			dimm->nr_pages = nr_pages / nr_channels;
			dimm->nr_pages = nr_pages;
			dimm->grain = nr_pages << PAGE_SHIFT;
			dimm->mtype = MEM_DDR2;
			dimm->dtype = DEV_UNKNOWN;