From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kevin Hilman Subject: Re: [PATCH 07/17][V2] ARM: OMAP4: cpuidle - remove omap4_idle_data initialization at boot time Date: Mon, 09 Apr 2012 15:40:49 -0700 Message-ID: <87ehrwa5qm.fsf@ti.com> References: <1333570371-1389-1-git-send-email-daniel.lezcano@linaro.org> <1333570371-1389-8-git-send-email-daniel.lezcano@linaro.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1333570371-1389-8-git-send-email-daniel.lezcano-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> (Daniel Lezcano's message of "Wed, 4 Apr 2012 22:12:41 +0200") List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linaro-dev-bounces-cunTk1MwBs8s++Sfvej+rw@public.gmane.org Errors-To: linaro-dev-bounces-cunTk1MwBs8s++Sfvej+rw@public.gmane.org To: Daniel Lezcano Cc: linaro-dev-cunTk1MwBs8s++Sfvej+rw@public.gmane.org, patches-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org, tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org, linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org List-Id: linux-omap@vger.kernel.org Daniel Lezcano writes: > We initialized it at compile time, no need to do that at boot > time. > > Signed-off-by: Daniel Lezcano > Reviewed-by: Jean Pihet > Reviewed-by: Santosh Shilimkar > --- > arch/arm/mach-omap2/cpuidle44xx.c | 26 +------------------------- > 1 files changed, 1 insertions(+), 25 deletions(-) > > diff --git a/arch/arm/mach-omap2/cpuidle44xx.c b/arch/arm/mach-omap2/cpuidle44xx.c > index b82f9fe..b0dd220 100644 > --- a/arch/arm/mach-omap2/cpuidle44xx.c > +++ b/arch/arm/mach-omap2/cpuidle44xx.c > @@ -33,7 +33,7 @@ struct omap4_idle_statedata { > > #define OMAP4_NUM_STATES 3 > > -static struct omap4_idle_statedata omap4_idle_data[] = { > +static struct omap4_idle_statedata omap4_idle_data[OMAP4_NUM_STATES] = { You removed OMAP4_NUM_STATES usage in patch 5, why add it back here? Kevin From mboxrd@z Thu Jan 1 00:00:00 1970 From: khilman@ti.com (Kevin Hilman) Date: Mon, 09 Apr 2012 15:40:49 -0700 Subject: [PATCH 07/17][V2] ARM: OMAP4: cpuidle - remove omap4_idle_data initialization at boot time In-Reply-To: <1333570371-1389-8-git-send-email-daniel.lezcano@linaro.org> (Daniel Lezcano's message of "Wed, 4 Apr 2012 22:12:41 +0200") References: <1333570371-1389-1-git-send-email-daniel.lezcano@linaro.org> <1333570371-1389-8-git-send-email-daniel.lezcano@linaro.org> Message-ID: <87ehrwa5qm.fsf@ti.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Daniel Lezcano writes: > We initialized it at compile time, no need to do that at boot > time. > > Signed-off-by: Daniel Lezcano > Reviewed-by: Jean Pihet > Reviewed-by: Santosh Shilimkar > --- > arch/arm/mach-omap2/cpuidle44xx.c | 26 +------------------------- > 1 files changed, 1 insertions(+), 25 deletions(-) > > diff --git a/arch/arm/mach-omap2/cpuidle44xx.c b/arch/arm/mach-omap2/cpuidle44xx.c > index b82f9fe..b0dd220 100644 > --- a/arch/arm/mach-omap2/cpuidle44xx.c > +++ b/arch/arm/mach-omap2/cpuidle44xx.c > @@ -33,7 +33,7 @@ struct omap4_idle_statedata { > > #define OMAP4_NUM_STATES 3 > > -static struct omap4_idle_statedata omap4_idle_data[] = { > +static struct omap4_idle_statedata omap4_idle_data[OMAP4_NUM_STATES] = { You removed OMAP4_NUM_STATES usage in patch 5, why add it back here? Kevin