diff options
author | Luis de Bethencourt <luis@debethencourt.com> | 2015-08-28 12:44:32 (GMT) |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2015-09-16 22:22:31 (GMT) |
commit | 051ace1020d44ca7a1eb813ab35b7e769a622aa8 (patch) | |
tree | 840c82dded2122da21e7e5af83d8686faaa2a83d | |
parent | 6ed5f8e45dc4c305abbf19640a5c75fb3694986b (diff) | |
download | linux-051ace1020d44ca7a1eb813ab35b7e769a622aa8.tar.xz |
clk: sunxi: sun9i-mmc: 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: Stephen Boyd <sboyd@codeaurora.org>
-rw-r--r-- | drivers/clk/sunxi/clk-sun9i-mmc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/sunxi/clk-sun9i-mmc.c b/drivers/clk/sunxi/clk-sun9i-mmc.c index 3436a94..a9b1761 100644 --- a/drivers/clk/sunxi/clk-sun9i-mmc.c +++ b/drivers/clk/sunxi/clk-sun9i-mmc.c @@ -204,6 +204,7 @@ static const struct of_device_id sun9i_a80_mmc_config_clk_dt_ids[] = { { .compatible = "allwinner,sun9i-a80-mmc-config-clk" }, { /* sentinel */ } }; +MODULE_DEVICE_TABLE(of, sun9i_a80_mmc_config_clk_dt_ids); static struct platform_driver sun9i_a80_mmc_config_clk_driver = { .driver = { |