Kevin Hilman said the following on 12/19/2009 04:35 AM:
Add new function opp_get_opp_id() for finding the OPP ID of a given OPP. This allows us to further hide OPP layer details.NOTE: OPP IDs are deprecated, and this function will eventually be removed after all users of OPP IDs are removed. Signed-off-by: Kevin Hilman <[email protected]> --- arch/arm/plat-omap/include/plat/opp.h | 1 + arch/arm/plat-omap/opp.c | 5 +++++ 2 files changed, 6 insertions(+), 0 deletions(-) diff --git a/arch/arm/plat-omap/include/plat/opp.h b/arch/arm/plat-omap/include/plat/opp.h index cdadf67..6fe574c 100644 --- a/arch/arm/plat-omap/include/plat/opp.h +++ b/arch/arm/plat-omap/include/plat/opp.h @@ -243,6 +243,7 @@ int opp_disable(struct omap_opp *opp);struct omap_opp * __deprecated opp_find_by_opp_id(struct omap_opp *opps,u8 opp_id); +u8 __deprecated opp_get_opp_id(struct omap_opp *opp);
Sigh.. ok... been trying to avoid this precisely :( Acked-by: Nishanth Menon <[email protected]>
void opp_init_cpufreq_table(struct omap_opp *opps,struct cpufreq_frequency_table **table); diff --git a/arch/arm/plat-omap/opp.c b/arch/arm/plat-omap/opp.c index e7b6f2a..4f7fa22 100644 --- a/arch/arm/plat-omap/opp.c +++ b/arch/arm/plat-omap/opp.c @@ -69,6 +69,11 @@ struct omap_opp * __deprecated opp_find_by_opp_id(struct omap_opp *opps, return NULL; }+u8 __deprecated opp_get_opp_id(struct omap_opp *opp)+{ + return opp->opp_id; +} + int opp_get_opp_count(struct omap_opp *oppl) { u8 n = 0;
-- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
