From: Luis de Bethencourt Date: Thu, 17 Sep 2015 11:46:19 +0000 (+0200) Subject: EDAC, ppc4xx_edac: Fix module autoload for OF platform driver X-Git-Tag: Ubuntu-5.10.0-12.13~13864^2~3 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=90b3b37383fd083481655d5529686ca4eda4da2b;p=mirror_ubuntu-hirsute-kernel.git EDAC, ppc4xx_edac: Fix module autoload for OF platform driver This platform driver has an OF device ID table but the OF module alias information is not created so module autoloading won't work. Signed-off-by: Luis de Bethencourt Reviewed-by: Johannes Thumshirn Cc: Mauro Carvalho Chehab Cc: linux-edac Link: http://lkml.kernel.org/r/20150917114619.GA13145@goodgumbo.baconseed.org Signed-off-by: Borislav Petkov --- diff --git a/drivers/edac/ppc4xx_edac.c b/drivers/edac/ppc4xx_edac.c index 711d8ad74f11..d3a64ba61fa3 100644 --- a/drivers/edac/ppc4xx_edac.c +++ b/drivers/edac/ppc4xx_edac.c @@ -199,6 +199,7 @@ static const struct of_device_id ppc4xx_edac_match[] = { }, { } }; +MODULE_DEVICE_TABLE(of, ppc4xx_edac_match); static struct platform_driver ppc4xx_edac_driver = { .probe = ppc4xx_edac_probe,