diff options
author | Dave Jiang <djiang@mvista.com> | 2007-07-19 04:49:47 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-19 13:04:53 -0400 |
commit | c4192705fec85219086231a1c0fa61e8776e2c3b (patch) | |
tree | 2ac7f03963fbc1bec8457a0f4a61adeb398a5df7 /drivers/edac/e7xxx_edac.c | |
parent | 20bcb7a81dee21bfa3408f03f46b2891c9b5c84b (diff) |
drivers/edac: add dev_name getter function
Move dev_name() macro to a more generic interface since it's not possible
to determine whether a device is pci, platform, or of_device easily.
Now each low level driver sets the name into the control structure, and
the EDAC core references the control structure for the information.
Better abstraction.
Signed-off-by: Dave Jiang <djiang@mvista.com>
Signed-off-by: Douglas Thompson <dougthompson@xmission.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/edac/e7xxx_edac.c')
-rw-r--r-- | drivers/edac/e7xxx_edac.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/edac/e7xxx_edac.c b/drivers/edac/e7xxx_edac.c index 367eb99c1d07..5202bbf2e0cd 100644 --- a/drivers/edac/e7xxx_edac.c +++ b/drivers/edac/e7xxx_edac.c | |||
@@ -463,6 +463,7 @@ static int e7xxx_probe1(struct pci_dev *pdev, int dev_idx) | |||
463 | 463 | ||
464 | debugf3("%s(): more mci init\n", __func__); | 464 | debugf3("%s(): more mci init\n", __func__); |
465 | mci->ctl_name = pvt->dev_info->ctl_name; | 465 | mci->ctl_name = pvt->dev_info->ctl_name; |
466 | mci->dev_name = pci_name(pdev); | ||
466 | mci->edac_check = e7xxx_check; | 467 | mci->edac_check = e7xxx_check; |
467 | mci->ctl_page_to_phys = ctl_page_to_phys; | 468 | mci->ctl_page_to_phys = ctl_page_to_phys; |
468 | e7xxx_init_csrows(mci, pdev, dev_idx, drc); | 469 | e7xxx_init_csrows(mci, pdev, dev_idx, drc); |