[PATCH] i7300: Fix the memory alloc initialization

From: Mauro Carvalho Chehab
Date: Mon Mar 12 2012 - 09:27:09 EST


Instead of initializing with the total number of channels, it
should use the number of channels per branch.

Signed-off-by: Mauro Carvalho Chehab <mchehab@xxxxxxxxxx>
---
drivers/edac/i7300_edac.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/edac/i7300_edac.c b/drivers/edac/i7300_edac.c
index f9faf96..0ff0b26 100644
--- a/drivers/edac/i7300_edac.c
+++ b/drivers/edac/i7300_edac.c
@@ -1049,7 +1049,7 @@ static int __devinit i7300_init_one(struct pci_dev *pdev,
layers[0].size = MAX_BRANCHES;
layers[0].is_csrow = false;
layers[1].type = EDAC_MC_LAYER_CHANNEL;
- layers[1].size = MAX_CHANNELS;
+ layers[1].size = MAX_CH_PER_BRANCH;
layers[1].is_csrow = true;
layers[2].type = EDAC_MC_LAYER_SLOT;
layers[2].size = MAX_SLOTS;
--
1.7.8

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/