blob: 57fbff024dcd5dd6ccf23afb94e09d6b0ae47796 [file] [log] [blame]
Gaku Inami06e32c92014-06-03 21:02:45 +09001/*
2 * CPUFreq support code for SH-Mobile ARM
3 *
4 * Copyright (C) 2014 Gaku Inami
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
8 * for more details.
9 */
10
Gaku Inami06e32c92014-06-03 21:02:45 +090011#include <linux/platform_device.h>
12
13int __init shmobile_cpufreq_init(void)
14{
Viresh Kumarbbcf0712014-09-09 19:58:03 +053015 platform_device_register_simple("cpufreq-dt", -1, NULL, 0);
Gaku Inami06e32c92014-06-03 21:02:45 +090016 return 0;
17}