diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2016-04-22 16:58:42 +0530 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2016-04-25 16:18:23 +0200 |
commit | 7694ca6e1d6f01122f05039b81f70f64b1ec4063 (patch) | |
tree | ca1736b455793e893beb0f02827d0150e4b205a0 /drivers/cpufreq | |
parent | 7ead83f6df2b105e4973140fe323a93ccfd4f8f9 (diff) | |
download | linux-7694ca6e1d6f01122f05039b81f70f64b1ec4063.tar.gz linux-7694ca6e1d6f01122f05039b81f70f64b1ec4063.tar.bz2 linux-7694ca6e1d6f01122f05039b81f70f64b1ec4063.zip |
cpufreq: omap: Use generic platdev driver
The cpufreq-dt-platdev driver supports creation of cpufreq-dt platform
device now, reuse that and remove similar code from platform code.
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r-- | drivers/cpufreq/cpufreq-dt-platdev.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/cpufreq/cpufreq-dt-platdev.c b/drivers/cpufreq/cpufreq-dt-platdev.c index 3843314389c7..4e525f6ec59f 100644 --- a/drivers/cpufreq/cpufreq-dt-platdev.c +++ b/drivers/cpufreq/cpufreq-dt-platdev.c @@ -28,6 +28,11 @@ static const struct of_device_id machines[] __initconst = { { .compatible = "samsung,exynos5420", }, { .compatible = "samsung,exynos5800", }, #endif + + { .compatible = "ti,omap2", }, + { .compatible = "ti,omap3", }, + { .compatible = "ti,omap4", }, + { .compatible = "ti,omap5", }, }; static int __init cpufreq_dt_platdev_init(void) |