diff options
author | Heiko Stuebner <heiko@sntech.de> | 2014-09-30 10:33:27 +0200 |
---|---|---|
committer | Heiko Stuebner <heiko@sntech.de> | 2014-09-30 10:33:27 +0200 |
commit | 3eb79a5a9d46b32f63f6b9cd86f9b2bba43e127a (patch) | |
tree | 81955b6efeae6793bddd96bf8fdf44a8bcd78b91 /arch/arm/mach-rockchip | |
parent | 47b06fc2d97a0d98d6053357561f2953d6547d25 (diff) |
ARM: rockchip: honor renaming of cpufreq-cpu0 to cpufreq-dt
cpufreq-cpu0 got renamed to a more generic name cpufreq-dt, so
adapt the created platform-device to this.
Reported-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Diffstat (limited to 'arch/arm/mach-rockchip')
-rw-r--r-- | arch/arm/mach-rockchip/rockchip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-rockchip/rockchip.c b/arch/arm/mach-rockchip/rockchip.c index eea1f06366e6..d226b71d21d5 100644 --- a/arch/arm/mach-rockchip/rockchip.c +++ b/arch/arm/mach-rockchip/rockchip.c @@ -27,7 +27,7 @@ static void __init rockchip_dt_init(void) { of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL); - platform_device_register_simple("cpufreq-cpu0", 0, NULL, 0); + platform_device_register_simple("cpufreq-dt", 0, NULL, 0); } static const char * const rockchip_board_dt_compat[] = { |