diff options
author | Luis de Bethencourt <[email protected]> | 2015-10-02 15:27:57 +0100 |
---|---|---|
committer | Rafael J. Wysocki <[email protected]> | 2015-10-14 02:38:53 +0200 |
commit | fa743d96e76c3c74aa379ba828f10119b87ff88c (patch) | |
tree | b7cba4852f738c394ae11bb68f5e3f9861853c99 | |
parent | 25cb62b76430a91cc6195f902e61c2cb84ade622 (diff) |
PM / AVS: rockchip-io: 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 <[email protected]>
Reviewed-by: Heiko Stuebner <[email protected]>
Acked-by: Kevin Hilman <[email protected]>
Signed-off-by: Rafael J. Wysocki <[email protected]>
-rw-r--r-- | drivers/power/avs/rockchip-io-domain.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/power/avs/rockchip-io-domain.c b/drivers/power/avs/rockchip-io-domain.c index 2e300028f0f7..80994566a1c8 100644 --- a/drivers/power/avs/rockchip-io-domain.c +++ b/drivers/power/avs/rockchip-io-domain.c @@ -271,6 +271,7 @@ static const struct of_device_id rockchip_iodomain_match[] = { }, { /* sentinel */ }, }; +MODULE_DEVICE_TABLE(of, rockchip_iodomain_match); static int rockchip_iodomain_probe(struct platform_device *pdev) { |