]> Pileus Git - ~andy/linux/commitdiff
cpufreq: OMAP: only supports OPP library
authorNishanth Menon <nm@ti.com>
Fri, 27 May 2011 02:39:18 +0000 (19:39 -0700)
committerKevin Hilman <khilman@ti.com>
Tue, 8 Nov 2011 19:42:17 +0000 (11:42 -0800)
OMAP2 is the only family using clk_[init|exit]_cpufreq_table, however,
the cpufreq code does not currently use clk_init_cpufreq_table. As a
result, it is unusuable for OMAP2 and only usable only on platforms
using OPP library.

Remove the unbalanced clk_exit_cpufreq_table().  Any platforms where
OPPs are not availble will fail on init because a freq table will not
be properly initialized.

Signed-off-by: Nishanth Menon <nm@ti.com>
[khilman@ti.com: changelog edits, and graceful failure mode changes]
Signed-off-by: Kevin Hilman <khilman@ti.com>
drivers/cpufreq/omap-cpufreq.c

index eecb0961c6b38bc82d1e809d53733509a3229720..8f778b9dbb46bd8e7da5443521404adfe08565ba 100644 (file)
@@ -1,5 +1,5 @@
 /*
- *  CPU frequency scaling for OMAP
+ *  CPU frequency scaling for OMAP using OPP information
  *
  *  Copyright (C) 2005 Nokia Corporation
  *  Written by Tony Lindgren <tony@atomide.com>
@@ -198,7 +198,6 @@ static int __cpuinit omap_cpu_init(struct cpufreq_policy *policy)
 
 static int omap_cpu_exit(struct cpufreq_policy *policy)
 {
-       clk_exit_cpufreq_table(&freq_table);
        clk_put(mpu_clk);
        return 0;
 }