@@ -68,6 +68,7 @@ static const struct of_device_id mvebu_thermal_id_table[] = {
{ .compatible = "marvell,kirkwood-thermal" },
{}
};
+MODULE_DEVICE_TABLE(of, mvebu_thermal_id_table);
static int mvebu_thermal_probe(struct platform_device *pdev)
{
@@ -115,8 +116,6 @@ static int mvebu_thermal_exit(struct platform_device *pdev)
return 0;
}
-MODULE_DEVICE_TABLE(of, mvebu_thermal_id_table);
-
static struct platform_driver mvebu_thermal_driver = {
.probe = mvebu_thermal_probe,
.remove = mvebu_thermal_exit,
This table will be needed by mvebu_thermal_probe() so we move it just below the declaration of the compatible device table. Signed-off-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> --- drivers/thermal/mvebu_thermal.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-)