diff options
author | Arnd Bergmann <arnd@arndb.de> | 2013-02-15 02:26:58 +0400 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2013-02-22 13:38:40 +0400 |
commit | f5b6d45f8cf688f51140fd21f1da3b90562762a9 (patch) | |
tree | 222800b8df3680f6c3df0521d7ab77c81804d387 /drivers/thermal/rcar_thermal.c | |
parent | da28d966f6aa942ae836d09729f76a1647932309 (diff) | |
download | linux-f5b6d45f8cf688f51140fd21f1da3b90562762a9.tar.xz |
thermal: rcar: remove __devinitconst
commit 76cc18874 "thermal: rcar: add Device Tree support"
added device tree support for this driver, but also added
an instance of __devinitconst, which is no longer defined
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Cc: Zhang Rui <rui.zhang@intel.com>
Diffstat (limited to 'drivers/thermal/rcar_thermal.c')
-rw-r--r-- | drivers/thermal/rcar_thermal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thermal/rcar_thermal.c b/drivers/thermal/rcar_thermal.c index 909bb4bb837f..28f091994013 100644 --- a/drivers/thermal/rcar_thermal.c +++ b/drivers/thermal/rcar_thermal.c @@ -476,7 +476,7 @@ static int rcar_thermal_remove(struct platform_device *pdev) return 0; } -static const struct of_device_id rcar_thermal_dt_ids[] __devinitconst = { +static const struct of_device_id rcar_thermal_dt_ids[] = { { .compatible = "renesas,rcar-thermal", }, {}, }; |