diff options
author | Amit Daniel Kachhap <amit.daniel@samsung.com> | 2013-04-08 08:17:36 +0000 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-04-10 13:19:26 +0200 |
commit | c1585207a54659c51e0cebb7a208c6671cc3f03c (patch) | |
tree | 8e933bee1988fff63759b0fb233d4ab1e2f450ce /drivers/cpufreq/exynos-cpufreq.c | |
parent | 49d7b5bfb79cd5f8141a2998e2f4003d0ed65e5c (diff) | |
download | linux-c1585207a54659c51e0cebb7a208c6671cc3f03c.tar.gz linux-c1585207a54659c51e0cebb7a208c6671cc3f03c.tar.bz2 linux-c1585207a54659c51e0cebb7a208c6671cc3f03c.zip |
cpufreq: exynos: Remove error return even if no soc is found
This patch helps to have single binary for exynos5440 and previous
exynos soc's. This change is needed for adding exynos5440 cpufreq driver
which does not uses exynos-cpufreq common file and adds it own driver.
Signed-off-by: Amit Daniel Kachhap <amit.daniel@samsung.com>
Acked-by: Kukjin Kim <kgene.kim@samsung.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/cpufreq/exynos-cpufreq.c')
-rw-r--r-- | drivers/cpufreq/exynos-cpufreq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cpufreq/exynos-cpufreq.c b/drivers/cpufreq/exynos-cpufreq.c index c0c4ce53b9e9..475b4f607f0d 100644 --- a/drivers/cpufreq/exynos-cpufreq.c +++ b/drivers/cpufreq/exynos-cpufreq.c @@ -294,7 +294,7 @@ static int __init exynos_cpufreq_init(void) else if (soc_is_exynos5250()) ret = exynos5250_cpufreq_init(exynos_info); else - pr_err("%s: CPU type not found\n", __func__); + return 0; if (ret) goto err_vdd_arm; |