From patchwork Wed Apr 15 12:55:45 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rajendra Nayak X-Patchwork-Id: 18362 X-Patchwork-Delegate: khilman@deeprootsystems.com Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n3FCtuVE017197 for ; Wed, 15 Apr 2009 12:55:56 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758893AbZDOMzz (ORCPT ); Wed, 15 Apr 2009 08:55:55 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1758914AbZDOMzy (ORCPT ); Wed, 15 Apr 2009 08:55:54 -0400 Received: from arroyo.ext.ti.com ([192.94.94.40]:39289 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758893AbZDOMzy convert rfc822-to-8bit (ORCPT ); Wed, 15 Apr 2009 08:55:54 -0400 Received: from dbdp20.itg.ti.com ([172.24.170.38]) by arroyo.ext.ti.com (8.13.7/8.13.7) with ESMTP id n3FCtlcl008098 for ; Wed, 15 Apr 2009 07:55:53 -0500 Received: from dbde71.ent.ti.com (localhost [127.0.0.1]) by dbdp20.itg.ti.com (8.13.8/8.13.8) with ESMTP id n3FCtkQ1021739 for ; Wed, 15 Apr 2009 18:25:46 +0530 (IST) Received: from dbde02.ent.ti.com ([172.24.170.145]) by dbde71.ent.ti.com ([172.24.170.149]) with mapi; Wed, 15 Apr 2009 18:25:46 +0530 From: "Nayak, Rajendra" To: linux-omap Date: Wed, 15 Apr 2009 18:25:45 +0530 Subject: [PATCH 08/10] OMAP3: SR: Remove redundant defines Thread-Topic: [PATCH 08/10] OMAP3: SR: Remove redundant defines Thread-Index: Acm9yX4EAMt9df0zRJaQBWsT8qR55A== Message-ID: <5A47E75E594F054BAF48C5E4FC4B92AB02FB251814@dbde02.ent.ti.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US MIME-Version: 1.0 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org From: Rajendra Nayak This patch removes the local defines (PRCM_VDD1/2) in smartreflex driver and uses the already existing global definitions (VDD1_OPP/VDD2_OPP) from omap34xx.h file. Signed-off-by: Rajendra Nayak Signed-off-by: Tero Kristo --- arch/arm/mach-omap2/resource34xx.c | 6 +++--- arch/arm/mach-omap2/smartreflex.c | 8 ++++---- arch/arm/mach-omap2/smartreflex.h | 3 --- 3 files changed, 7 insertions(+), 10 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Index: linux-omap-2.6/arch/arm/mach-omap2/resource34xx.c =================================================================== --- linux-omap-2.6.orig/arch/arm/mach-omap2/resource34xx.c 2009-04-15 11:44:51.000000000 +0530 +++ linux-omap-2.6/arch/arm/mach-omap2/resource34xx.c 2009-04-15 11:46:15.000000000 +0530 @@ -218,7 +218,7 @@ int resource_set_opp_level(int res, u32 /* Send pre notification to CPUFreq */ cpufreq_notify_transition(&freqs_notify, CPUFREQ_PRECHANGE); #endif - t_opp = ID_VDD(PRCM_VDD1) | + t_opp = ID_VDD(VDD1_OPP) | ID_OPP_NO(mpu_opps[target_level].opp_id); if (resp->curr_level > target_level) { /* Scale Frequency and then voltage */ @@ -245,7 +245,7 @@ int resource_set_opp_level(int res, u32 return 0; l3_freq = get_freq(l3_opps + MAX_VDD2_OPP, target_level); - t_opp = ID_VDD(PRCM_VDD2) | + t_opp = ID_VDD(VDD2_OPP) | ID_OPP_NO(l3_opps[target_level].opp_id); if (resp->curr_level > target_level) { /* Scale Frequency and then voltage */ @@ -266,7 +266,7 @@ int resource_set_opp_level(int res, u32 if (ret) { #ifdef CONFIG_OMAP_SMARTREFLEX /* Setting clock failed, revert voltage */ - t_opp = ID_VDD(PRCM_VDD2) | + t_opp = ID_VDD(VDD2_OPP) | ID_OPP_NO(l3_opps[resp->curr_level]. opp_id); sr_voltagescale_vcbypass(t_opp, Index: linux-omap-2.6/arch/arm/mach-omap2/smartreflex.c =================================================================== --- linux-omap-2.6.orig/arch/arm/mach-omap2/smartreflex.c 2009-04-15 11:46:14.000000000 +0530 +++ linux-omap-2.6/arch/arm/mach-omap2/smartreflex.c 2009-04-15 11:46:15.000000000 +0530 @@ -676,7 +676,7 @@ int sr_voltagescale_vcbypass(u32 target_ vdd = get_vdd(target_opp); target_opp_no = get_opp_no(target_opp); - if (vdd == PRCM_VDD1) { + if (vdd == VDD1_OPP) { sr_status = sr_stop_vddautocomap(SR1); prm_rmw_mod_reg_bits(OMAP3430_VC_CMD_ON_MASK, @@ -685,7 +685,7 @@ int sr_voltagescale_vcbypass(u32 target_ OMAP3_PRM_VC_CMD_VAL_0_OFFSET); reg_addr = R_VDD1_SR_CONTROL; - } else if (vdd == PRCM_VDD2) { + } else if (vdd == VDD2_OPP) { sr_status = sr_stop_vddautocomap(SR2); prm_rmw_mod_reg_bits(OMAP3430_VC_CMD_ON_MASK, @@ -724,9 +724,9 @@ int sr_voltagescale_vcbypass(u32 target_ udelay(T2_SMPS_UPDATE_DELAY); if (sr_status) { - if (vdd == PRCM_VDD1) + if (vdd == VDD1_OPP) sr_start_vddautocomap(SR1, target_opp_no); - else if (vdd == PRCM_VDD2) + else if (vdd == VDD2_OPP) sr_start_vddautocomap(SR2, target_opp_no); } Index: linux-omap-2.6/arch/arm/mach-omap2/smartreflex.h =================================================================== --- linux-omap-2.6.orig/arch/arm/mach-omap2/smartreflex.h 2009-04-15 11:44:51.000000000 +0530 +++ linux-omap-2.6/arch/arm/mach-omap2/smartreflex.h 2009-04-15 11:46:15.000000000 +0530 @@ -171,9 +171,6 @@ /* R_DCDC_GLOBAL_CFG register, SMARTREFLEX_ENABLE values */ #define DCDC_GLOBAL_CFG_ENABLE_SRFLX 0x08 -/* VDDs*/ -#define PRCM_VDD1 1 -#define PRCM_VDD2 2 #define PRCM_MAX_SYSC_REGS 30 /*