Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1228092 > unrolled thread
| Started by | Luis de Bethencourt <luis@debethencourt.com> |
|---|---|
| First post | 2015-09-18 18:00 +0200 |
| Last post | 2015-09-18 21:30 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH 4/6] net: freescale: Fix module autoload for OF platform driver Luis de Bethencourt <luis@debethencourt.com> - 2015-09-18 18:00 +0200
Re: [PATCH 4/6] net: freescale: Fix module autoload for OF platform driver Richard Cochran <richardcochran@gmail.com> - 2015-09-18 21:30 +0200
| From | Luis de Bethencourt <luis@debethencourt.com> |
|---|---|
| Date | 2015-09-18 18:00 +0200 |
| Subject | [PATCH 4/6] net: freescale: Fix module autoload for OF platform driver |
| Message-ID | <qa6eR-75X-1@gated-at.bofh.it> |
This platform driver has a 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 <luisbg@osg.samsung.com>
---
drivers/net/ethernet/freescale/gianfar_ptp.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/net/ethernet/freescale/gianfar_ptp.c b/drivers/net/ethernet/freescale/gianfar_ptp.c
index 8e3cd77..664d0c2 100644
--- a/drivers/net/ethernet/freescale/gianfar_ptp.c
+++ b/drivers/net/ethernet/freescale/gianfar_ptp.c
@@ -557,6 +557,7 @@ static const struct of_device_id match_table[] = {
{ .compatible = "fsl,etsec-ptp" },
{},
};
+MODULE_DEVICE_TABLE(of, match_table);
static struct platform_driver gianfar_ptp_driver = {
.driver = {
--
2.4.6
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Richard Cochran <richardcochran@gmail.com> |
|---|---|
| Date | 2015-09-18 21:30 +0200 |
| Message-ID | <qa9w5-3sg-1@gated-at.bofh.it> |
| In reply to | #1228092 |
On Fri, Sep 18, 2015 at 05:55:27PM +0200, Luis de Bethencourt wrote: > This platform driver has a 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 <luisbg@osg.samsung.com> Nit: The subject line should have been: net: gianfar_ptp: ... Acked-by: Richard Cochran <richardcochran@gmail.com> -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web