mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
edac: say "TILEGx" not "TILEPro" for the tilegx edac driver
This is just an aesthetic change but it was silly to say TILEPro when booting up on the tilegx architecture. Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
This commit is contained in:
parent
e1d5c01950
commit
e2e110d759
1 changed files with 4 additions and 0 deletions
|
@ -145,7 +145,11 @@ static int __devinit tile_edac_mc_probe(struct platform_device *pdev)
|
||||||
mci->edac_ctl_cap = EDAC_FLAG_SECDED;
|
mci->edac_ctl_cap = EDAC_FLAG_SECDED;
|
||||||
|
|
||||||
mci->mod_name = DRV_NAME;
|
mci->mod_name = DRV_NAME;
|
||||||
|
#ifdef __tilegx__
|
||||||
|
mci->ctl_name = "TILEGx_Memory_Controller";
|
||||||
|
#else
|
||||||
mci->ctl_name = "TILEPro_Memory_Controller";
|
mci->ctl_name = "TILEPro_Memory_Controller";
|
||||||
|
#endif
|
||||||
mci->dev_name = dev_name(&pdev->dev);
|
mci->dev_name = dev_name(&pdev->dev);
|
||||||
mci->edac_check = tile_edac_check;
|
mci->edac_check = tile_edac_check;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue