* Fix pm24xx.c compilation problem
@ 2010-12-22 20:19 Charles Manning
2010-12-22 22:22 ` Kevin Hilman
0 siblings, 1 reply; 3+ messages in thread
From: Charles Manning @ 2010-12-22 20:19 UTC (permalink / raw)
To: linux-omap
arch/arm/mach-omap2/pm24xx.c doesn't compile without CONFIG_SUSPEND
diff --git a/arch/arm/mach-omap2/pm24xx.c b/arch/arm/mach-omap2/pm24xx.c
index aaeea49..ae6abda 100644
--- a/arch/arm/mach-omap2/pm24xx.c
+++ b/arch/arm/mach-omap2/pm24xx.c
@@ -53,8 +53,8 @@
#include <plat/powerdomain.h>
#include <plat/clockdomain.h>
-#ifdef CONFIG_SUSPEND
static suspend_state_t suspend_state = PM_SUSPEND_ON;
+#ifdef CONFIG_SUSPEND
static inline bool is_suspending(void)
{
return (suspend_state != PM_SUSPEND_ON);
@@ -314,6 +314,7 @@ static int omap2_pm_prepare(void)
static int omap2_pm_suspend(void)
{
+#ifdef CONFIG_SUSPEND
u32 wken_wkup, mir1;
wken_wkup = prm_read_mod_reg(WKUP_MOD, PM_WKEN);
@@ -329,7 +330,7 @@ static int omap2_pm_suspend(void)
omap_writel(mir1, 0x480fe0a4);
prm_write_mod_reg(wken_wkup, WKUP_MOD, PM_WKEN);
-
+#endif
return 0;
}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: Fix pm24xx.c compilation problem
2010-12-22 20:19 Fix pm24xx.c compilation problem Charles Manning
@ 2010-12-22 22:22 ` Kevin Hilman
2010-12-22 22:53 ` Charles Manning
0 siblings, 1 reply; 3+ messages in thread
From: Kevin Hilman @ 2010-12-22 22:22 UTC (permalink / raw)
To: Charles Manning; +Cc: linux-omap
Charles Manning <manningc2@actrix.gen.nz> writes:
> arch/arm/mach-omap2/pm24xx.c doesn't compile without CONFIG_SUSPEND
>
> diff --git a/arch/arm/mach-omap2/pm24xx.c b/arch/arm/mach-omap2/pm24xx.c
> index aaeea49..ae6abda 100644
> --- a/arch/arm/mach-omap2/pm24xx.c
> +++ b/arch/arm/mach-omap2/pm24xx.c
> @@ -53,8 +53,8 @@
> #include <plat/powerdomain.h>
> #include <plat/clockdomain.h>
>
> -#ifdef CONFIG_SUSPEND
> static suspend_state_t suspend_state = PM_SUSPEND_ON;
> +#ifdef CONFIG_SUSPEND
> static inline bool is_suspending(void)
> {
> return (suspend_state != PM_SUSPEND_ON);
> @@ -314,6 +314,7 @@ static int omap2_pm_prepare(void)
>
> static int omap2_pm_suspend(void)
> {
> +#ifdef CONFIG_SUSPEND
> u32 wken_wkup, mir1;
>
> wken_wkup = prm_read_mod_reg(WKUP_MOD, PM_WKEN);
> @@ -329,7 +330,7 @@ static int omap2_pm_suspend(void)
>
> omap_writel(mir1, 0x480fe0a4);
> prm_write_mod_reg(wken_wkup, WKUP_MOD, PM_WKEN);
> -
> +#endif
> return 0;
> }
Indeed a bug, but not quite the right fix.
Like we do on OMAP3, all of the _begin, _enter, _suspend, and _end
fucntions can actually be left out when !CONFIG_SUSPEND.
Will send patch shortly.
Thanks for reporting this and proposing a fix.
Kevin
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Fix pm24xx.c compilation problem
2010-12-22 22:22 ` Kevin Hilman
@ 2010-12-22 22:53 ` Charles Manning
0 siblings, 0 replies; 3+ messages in thread
From: Charles Manning @ 2010-12-22 22:53 UTC (permalink / raw)
To: Kevin Hilman; +Cc: linux-omap
On Thursday 23 December 2010 11:22:42 Kevin Hilman wrote:
> Charles Manning <manningc2@actrix.gen.nz> writes:
> > arch/arm/mach-omap2/pm24xx.c doesn't compile without CONFIG_SUSPEND
> >
> > diff --git a/arch/arm/mach-omap2/pm24xx.c b/arch/arm/mach-omap2/pm24xx.c
> > index aaeea49..ae6abda 100644
> > --- a/arch/arm/mach-omap2/pm24xx.c
> > +++ b/arch/arm/mach-omap2/pm24xx.c
> > @@ -53,8 +53,8 @@
> > #include <plat/powerdomain.h>
> > #include <plat/clockdomain.h>
> >
> > -#ifdef CONFIG_SUSPEND
> > static suspend_state_t suspend_state = PM_SUSPEND_ON;
> > +#ifdef CONFIG_SUSPEND
> > static inline bool is_suspending(void)
> > {
> > return (suspend_state != PM_SUSPEND_ON);
> > @@ -314,6 +314,7 @@ static int omap2_pm_prepare(void)
> >
> > static int omap2_pm_suspend(void)
> > {
> > +#ifdef CONFIG_SUSPEND
> > u32 wken_wkup, mir1;
> >
> > wken_wkup = prm_read_mod_reg(WKUP_MOD, PM_WKEN);
> > @@ -329,7 +330,7 @@ static int omap2_pm_suspend(void)
> >
> > omap_writel(mir1, 0x480fe0a4);
> > prm_write_mod_reg(wken_wkup, WKUP_MOD, PM_WKEN);
> > -
> > +#endif
> > return 0;
> > }
>
> Indeed a bug, but not quite the right fix.
>
> Like we do on OMAP3, all of the _begin, _enter, _suspend, and _end
> fucntions can actually be left out when !CONFIG_SUSPEND.
>
> Will send patch shortly.
>
> Thanks for reporting this and proposing a fix.
I should have been clearer. I did not really propose this as a fix.
I really just as a way to get over the compilation hump and alert someone who
can fix it properly.
Thanks
-- Charles
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-12-22 22:53 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-22 20:19 Fix pm24xx.c compilation problem Charles Manning
2010-12-22 22:22 ` Kevin Hilman
2010-12-22 22:53 ` Charles Manning
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox