public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* omap2/pm.c build errors
@ 2008-04-16 18:50 David Brownell
  2008-04-16 21:12 ` Tony Lindgren
  0 siblings, 1 reply; 3+ messages in thread
From: David Brownell @ 2008-04-16 18:50 UTC (permalink / raw)
  To: linux-omap

arch/arm/mach-omap2/pm.c: In function 'pm_init_serial_console':
arch/arm/mach-omap2/pm.c:188: error: expected ';' before 'break'
arch/arm/mach-omap2/pm.c:191: error: expected ';' before 'break'
arch/arm/mach-omap2/pm.c:193: error: 'PM_WKEN2' undeclared (first use in this function)
arch/arm/mach-omap2/pm.c:193: error: (Each undeclared identifier is reported only once
arch/arm/mach-omap2/pm.c:193: error: for each function it appears in.)
arch/arm/mach-omap2/pm.c:194: error: expected ';' before 'break'


... wasn't there a patch for this?  That's with current GIT.

The "no semicolons after function calls" fix is obvious (and
is also a "that patch was never build-tested), but WKEN2 is
not quite clear (but see my guess below).



--- a/arch/arm/mach-omap2/pm.c
+++ b/arch/arm/mach-omap2/pm.c
@@ -184,13 +184,13 @@ static void pm_init_serial_console(void)
 	}
 	switch (serial_console_uart) {
 	case 1:
-		prm_set_mod_reg_bits(OMAP24XX_ST_UART1, CORE_MOD, PM_WKEN1)
+		prm_set_mod_reg_bits(OMAP24XX_ST_UART1, CORE_MOD, PM_WKEN1);
 		break;
 	case 2:
-		prm_set_mod_reg_bits(OMAP24XX_ST_UART2, CORE_MOD, PM_WKEN1)
+		prm_set_mod_reg_bits(OMAP24XX_ST_UART2, CORE_MOD, PM_WKEN1);
 		break;
 	case 3:
-		prm_set_mod_reg_bits(OMAP24XX_ST_UART3, CORE_MOD, PM_WKEN2)
+		prm_set_mod_reg_bits(OMAP24XX_ST_UART3, CORE_MOD, OMAP24XX_PM_WKEN2);
 		break;
 	}
 }


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: omap2/pm.c build errors
  2008-04-16 18:50 omap2/pm.c build errors David Brownell
@ 2008-04-16 21:12 ` Tony Lindgren
  2008-04-16 21:44   ` Tony Lindgren
  0 siblings, 1 reply; 3+ messages in thread
From: Tony Lindgren @ 2008-04-16 21:12 UTC (permalink / raw)
  To: David Brownell; +Cc: linux-omap

* David Brownell <david-b@pacbell.net> [080416 11:51]:
> arch/arm/mach-omap2/pm.c: In function 'pm_init_serial_console':
> arch/arm/mach-omap2/pm.c:188: error: expected ';' before 'break'
> arch/arm/mach-omap2/pm.c:191: error: expected ';' before 'break'
> arch/arm/mach-omap2/pm.c:193: error: 'PM_WKEN2' undeclared (first use in this function)
> arch/arm/mach-omap2/pm.c:193: error: (Each undeclared identifier is reported only once
> arch/arm/mach-omap2/pm.c:193: error: for each function it appears in.)
> arch/arm/mach-omap2/pm.c:194: error: expected ';' before 'break'
> 
> 
> ... wasn't there a patch for this?  That's with current GIT.

Hmmm, I don't think so.

> The "no semicolons after function calls" fix is obvious (and
> is also a "that patch was never build-tested), but WKEN2 is
> not quite clear (but see my guess below).

Heh, this looks easy to miss as it's behind CONFIG_PM_DEBUG :)

FYI, the PM code will be split to common pm.c and pm24xx.c and
pm34xx.c most likely. Then all the serial PM debug code will get
moved to serial driver.

Care to S-o-b: this patch?

Tony

> 
> 
> --- a/arch/arm/mach-omap2/pm.c
> +++ b/arch/arm/mach-omap2/pm.c
> @@ -184,13 +184,13 @@ static void pm_init_serial_console(void)
>  	}
>  	switch (serial_console_uart) {
>  	case 1:
> -		prm_set_mod_reg_bits(OMAP24XX_ST_UART1, CORE_MOD, PM_WKEN1)
> +		prm_set_mod_reg_bits(OMAP24XX_ST_UART1, CORE_MOD, PM_WKEN1);
>  		break;
>  	case 2:
> -		prm_set_mod_reg_bits(OMAP24XX_ST_UART2, CORE_MOD, PM_WKEN1)
> +		prm_set_mod_reg_bits(OMAP24XX_ST_UART2, CORE_MOD, PM_WKEN1);
>  		break;
>  	case 3:
> -		prm_set_mod_reg_bits(OMAP24XX_ST_UART3, CORE_MOD, PM_WKEN2)
> +		prm_set_mod_reg_bits(OMAP24XX_ST_UART3, CORE_MOD, OMAP24XX_PM_WKEN2);
>  		break;
>  	}
>  }
> 
> --
> 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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: omap2/pm.c build errors
  2008-04-16 21:12 ` Tony Lindgren
@ 2008-04-16 21:44   ` Tony Lindgren
  0 siblings, 0 replies; 3+ messages in thread
From: Tony Lindgren @ 2008-04-16 21:44 UTC (permalink / raw)
  To: David Brownell; +Cc: linux-omap

* Tony Lindgren <tony@atomide.com> [080416 14:12]:
> * David Brownell <david-b@pacbell.net> [080416 11:51]:
> > arch/arm/mach-omap2/pm.c: In function 'pm_init_serial_console':
> > arch/arm/mach-omap2/pm.c:188: error: expected ';' before 'break'
> > arch/arm/mach-omap2/pm.c:191: error: expected ';' before 'break'
> > arch/arm/mach-omap2/pm.c:193: error: 'PM_WKEN2' undeclared (first use in this function)
> > arch/arm/mach-omap2/pm.c:193: error: (Each undeclared identifier is reported only once
> > arch/arm/mach-omap2/pm.c:193: error: for each function it appears in.)
> > arch/arm/mach-omap2/pm.c:194: error: expected ';' before 'break'
> > 
> > 
> > ... wasn't there a patch for this?  That's with current GIT.
> 
> Hmmm, I don't think so.

Actually, yes, there's a patch from Hiroshi for this, will apply
that one.

> > The "no semicolons after function calls" fix is obvious (and
> > is also a "that patch was never build-tested), but WKEN2 is
> > not quite clear (but see my guess below).
> 
> Heh, this looks easy to miss as it's behind CONFIG_PM_DEBUG :)
> 
> FYI, the PM code will be split to common pm.c and pm24xx.c and
> pm34xx.c most likely. Then all the serial PM debug code will get
> moved to serial driver.
> 
> Care to S-o-b: this patch?
> 
> Tony
> 
> > 
> > 
> > --- a/arch/arm/mach-omap2/pm.c
> > +++ b/arch/arm/mach-omap2/pm.c
> > @@ -184,13 +184,13 @@ static void pm_init_serial_console(void)
> >  	}
> >  	switch (serial_console_uart) {
> >  	case 1:
> > -		prm_set_mod_reg_bits(OMAP24XX_ST_UART1, CORE_MOD, PM_WKEN1)
> > +		prm_set_mod_reg_bits(OMAP24XX_ST_UART1, CORE_MOD, PM_WKEN1);
> >  		break;
> >  	case 2:
> > -		prm_set_mod_reg_bits(OMAP24XX_ST_UART2, CORE_MOD, PM_WKEN1)
> > +		prm_set_mod_reg_bits(OMAP24XX_ST_UART2, CORE_MOD, PM_WKEN1);
> >  		break;
> >  	case 3:
> > -		prm_set_mod_reg_bits(OMAP24XX_ST_UART3, CORE_MOD, PM_WKEN2)
> > +		prm_set_mod_reg_bits(OMAP24XX_ST_UART3, CORE_MOD, OMAP24XX_PM_WKEN2);
> >  		break;
> >  	}
> >  }
> > 
> > --
> > 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
> --
> 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

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-04-16 21:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-16 18:50 omap2/pm.c build errors David Brownell
2008-04-16 21:12 ` Tony Lindgren
2008-04-16 21:44   ` Tony Lindgren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox