mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
bbcf071969
The naming convention of this driver was always under the scanner, people complained that it should have a more generic name than cpu0, as it manages all CPUs that are sharing clock lines. Also, in future it will be modified to support any number of clusters with separate clock/voltage lines. Lets rename it to 'cpufreq_dt' from 'cpufreq_cpu0'. Tested-by: Stephen Boyd <sboyd@codeaurora.org> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
17 lines
414 B
C
17 lines
414 B
C
/*
|
|
* CPUFreq support code for SH-Mobile ARM
|
|
*
|
|
* Copyright (C) 2014 Gaku Inami
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
* for more details.
|
|
*/
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
int __init shmobile_cpufreq_init(void)
|
|
{
|
|
platform_device_register_simple("cpufreq-dt", -1, NULL, 0);
|
|
return 0;
|
|
}
|