mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-02 05:56:54 +07:00
e423d12cbc
This patch is based on feedback from Viresh Kumar. Since cpufreq-cpu0 driver has already check opp table, there is no need to same check in mach-shmobile. Signed-off-by: Gaku Inami <gaku.inami.xw@bp.renesas.com> Acked-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
18 lines
416 B
C
18 lines
416 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-cpu0", -1, NULL, 0);
|
|
return 0;
|
|
}
|