aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuis de Bethencourt <luis@debethencourt.com>2015-09-01 23:35:07 +0200
committerJacek Anaszewski <j.anaszewski@samsung.com>2015-09-17 10:01:51 +0200
commit93a51aa406f61985d12b60f9860f949b4bf7e43d (patch)
tree7fb6b11029d8fb773ec09df75b09b8afb7b3883e
parent6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f (diff)
downloadti-soc-thermal-93a51aa406f61985d12b60f9860f949b4bf7e43d.tar.gz
leds: aat1290: Fix module autoload for OF platform driver
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> Signed-off-by: Jacek Anaszewski <j.anaszewski@samsung.com>
-rw-r--r--drivers/leds/leds-aat1290.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/leds/leds-aat1290.c b/drivers/leds/leds-aat1290.c
index fd7c25fd29c112..8ceb47127a4846 100644
--- a/drivers/leds/leds-aat1290.c
+++ b/drivers/leds/leds-aat1290.c
@@ -559,6 +559,7 @@ static const struct of_device_id aat1290_led_dt_match[] = {
{ .compatible = "skyworks,aat1290" },
{},
};
+MODULE_DEVICE_TABLE(of, aat1290_led_dt_match);
static struct platform_driver aat1290_led_driver = {
.probe = aat1290_led_probe,