Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1214707 > unrolled thread
| Started by | Luis de Bethencourt <luis@debethencourt.com> |
|---|---|
| First post | 2015-08-27 19:00 +0200 |
| Last post | 2015-08-27 19:00 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
[PATCH 3/6] input: regulator-haptic: Fix module autoload for OF platform driver Luis de Bethencourt <luis@debethencourt.com> - 2015-08-27 19:00 +0200
| From | Luis de Bethencourt <luis@debethencourt.com> |
|---|---|
| Date | 2015-08-27 19:00 +0200 |
| Subject | [PATCH 3/6] input: regulator-haptic: Fix module autoload for OF platform driver |
| Message-ID | <q28GT-1SK-29@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 <luis@debethencourt.com>
---
drivers/input/misc/regulator-haptic.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/input/misc/regulator-haptic.c b/drivers/input/misc/regulator-haptic.c
index 6bf3f10..2218b3d 100644
--- a/drivers/input/misc/regulator-haptic.c
+++ b/drivers/input/misc/regulator-haptic.c
@@ -250,6 +250,8 @@ static const struct of_device_id regulator_haptic_dt_match[] = {
{ /* sentinel */ },
};
+MODULE_DEVICE_TABLE(of, regulator_haptic_dt_match);
+
static struct platform_driver regulator_haptic_driver = {
.probe = regulator_haptic_probe,
.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/
Back to top | Article view | linux.kernel
csiph-web