diff options
author | Anton Vorontsov <avorontsov@ru.mvista.com> | 2009-10-14 17:54:52 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-10-14 17:54:52 -0400 |
commit | e72701acbe0b35e52d3f04d442837c06b4e64f1c (patch) | |
tree | 2a8edc6952e79c3d2ee3bdf7690ed1a6f2e7bcc6 /drivers/net/ibm_newemac | |
parent | 0fe7463a35aadfaf22d1ca58325ab3851b8d757c (diff) |
net: Fix OF platform drivers coldplug/hotplug when compiled as modules
Some OF platform drivers are missing module device tables, so they won't
load automatically on boot. This patch fixes the issue by adding proper
MODULE_DEVICE_TABLE() macros to the drivers.
Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ibm_newemac')
-rw-r--r-- | drivers/net/ibm_newemac/core.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/ibm_newemac/core.c b/drivers/net/ibm_newemac/core.c index c6591cb0aae0..3fae87559791 100644 --- a/drivers/net/ibm_newemac/core.c +++ b/drivers/net/ibm_newemac/core.c | |||
@@ -24,6 +24,7 @@ | |||
24 | * | 24 | * |
25 | */ | 25 | */ |
26 | 26 | ||
27 | #include <linux/module.h> | ||
27 | #include <linux/sched.h> | 28 | #include <linux/sched.h> |
28 | #include <linux/string.h> | 29 | #include <linux/string.h> |
29 | #include <linux/errno.h> | 30 | #include <linux/errno.h> |
@@ -2988,6 +2989,7 @@ static struct of_device_id emac_match[] = | |||
2988 | }, | 2989 | }, |
2989 | {}, | 2990 | {}, |
2990 | }; | 2991 | }; |
2992 | MODULE_DEVICE_TABLE(of, emac_match); | ||
2991 | 2993 | ||
2992 | static struct of_platform_driver emac_driver = { | 2994 | static struct of_platform_driver emac_driver = { |
2993 | .name = "emac", | 2995 | .name = "emac", |