public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix the size of twl4030 script
@ 2009-04-10  4:30 Kim Kyuwon
  2009-05-07  1:35 ` Kim Kyuwon
  2009-05-14 15:19 ` [APPLIED] " Tony Lindgren
  0 siblings, 2 replies; 6+ messages in thread
From: Kim Kyuwon @ 2009-04-10  4:30 UTC (permalink / raw)
  To: OMAP; +Cc: Tony Lindgren

The array size of wrst_seq is ARRAY_SIZE(wrst_seq)

Signed-off-by: Kim Kyuwon <q1.kim@samsung.com>
---
 arch/arm/mach-omap2/board-3430sdp.c |    2 +-
 arch/arm/mach-omap2/board-ldp.c     |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-omap2/board-3430sdp.c
b/arch/arm/mach-omap2/board-3430sdp.c
index 03acac7..38550e2 100644
--- a/arch/arm/mach-omap2/board-3430sdp.c
+++ b/arch/arm/mach-omap2/board-3430sdp.c
@@ -473,7 +473,7 @@ static struct twl4030_ins wrst_seq[] __initdata = {
 };
 static struct twl4030_script wrst_script __initdata = {
 	.script = wrst_seq,
-	.size   = ARRAY_SIZE(wakeup_seq),
+	.size   = ARRAY_SIZE(wrst_seq),
 	.flags  = TRITON_WRST_SCRIPT,
 };

diff --git a/arch/arm/mach-omap2/board-ldp.c b/arch/arm/mach-omap2/board-ldp.c
index 804fd8e..da814d7 100644
--- a/arch/arm/mach-omap2/board-ldp.c
+++ b/arch/arm/mach-omap2/board-ldp.c
@@ -450,7 +450,7 @@ static struct twl4030_ins wrst_seq[] __initdata = {

 static struct twl4030_script wrst_script __initdata = {
 	.script = wrst_seq,
-	.size   = ARRAY_SIZE(wakeup_seq),
+	.size   = ARRAY_SIZE(wrst_seq),
 	.flags  = TRITON_WRST_SCRIPT,
 };

-- 
1.5.2.5

-- 
Kyuwon (규원)
--
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 related	[flat|nested] 6+ messages in thread

* Re: [PATCH] Fix the size of twl4030 script
  2009-04-10  4:30 [PATCH] Fix the size of twl4030 script Kim Kyuwon
@ 2009-05-07  1:35 ` Kim Kyuwon
  2009-05-13 23:40   ` Tony Lindgren
  2009-05-14 15:19 ` [APPLIED] " Tony Lindgren
  1 sibling, 1 reply; 6+ messages in thread
From: Kim Kyuwon @ 2009-05-07  1:35 UTC (permalink / raw)
  To: OMAP

Hi All,

I sent this patch about 1 month ago.
Can anybody check I'm sending correct patch?

Thanks you!
Kyuwon.

2009/4/10 Kim Kyuwon <chammoru@gmail.com>:
> The array size of wrst_seq is ARRAY_SIZE(wrst_seq)
>
> Signed-off-by: Kim Kyuwon <q1.kim@samsung.com>
> ---
>  arch/arm/mach-omap2/board-3430sdp.c |    2 +-
>  arch/arm/mach-omap2/board-ldp.c     |    2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/board-3430sdp.c
> b/arch/arm/mach-omap2/board-3430sdp.c
> index 03acac7..38550e2 100644
> --- a/arch/arm/mach-omap2/board-3430sdp.c
> +++ b/arch/arm/mach-omap2/board-3430sdp.c
> @@ -473,7 +473,7 @@ static struct twl4030_ins wrst_seq[] __initdata = {
>  };
>  static struct twl4030_script wrst_script __initdata = {
>        .script = wrst_seq,
> -       .size   = ARRAY_SIZE(wakeup_seq),
> +       .size   = ARRAY_SIZE(wrst_seq),
>        .flags  = TRITON_WRST_SCRIPT,
>  };
>
> diff --git a/arch/arm/mach-omap2/board-ldp.c b/arch/arm/mach-omap2/board-ldp.c
> index 804fd8e..da814d7 100644
> --- a/arch/arm/mach-omap2/board-ldp.c
> +++ b/arch/arm/mach-omap2/board-ldp.c
> @@ -450,7 +450,7 @@ static struct twl4030_ins wrst_seq[] __initdata = {
>
>  static struct twl4030_script wrst_script __initdata = {
>        .script = wrst_seq,
> -       .size   = ARRAY_SIZE(wakeup_seq),
> +       .size   = ARRAY_SIZE(wrst_seq),
>        .flags  = TRITON_WRST_SCRIPT,
>  };
>
> --
> 1.5.2.5
>
> --
> Kyuwon (규원)
>

-- 
Kyuwon
--
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] 6+ messages in thread

* Re: [PATCH] Fix the size of twl4030 script
  2009-05-07  1:35 ` Kim Kyuwon
@ 2009-05-13 23:40   ` Tony Lindgren
  2009-05-14  8:58     ` Peter 'p2' De Schrijver
  0 siblings, 1 reply; 6+ messages in thread
From: Tony Lindgren @ 2009-05-13 23:40 UTC (permalink / raw)
  To: Kim Kyuwon, Peter 'p2' De Schrijver; +Cc: OMAP

* Kim Kyuwon <chammoru@gmail.com> [090506 18:36]:
> Hi All,
> 
> I sent this patch about 1 month ago.
> Can anybody check I'm sending correct patch?

Peter, care to ack? Any news on sending the scripts part of twl
driver upstream?

Regards,

Tony
 
> Thanks you!
> Kyuwon.
> 
> 2009/4/10 Kim Kyuwon <chammoru@gmail.com>:
> > The array size of wrst_seq is ARRAY_SIZE(wrst_seq)
> >
> > Signed-off-by: Kim Kyuwon <q1.kim@samsung.com>
> > ---
> >  arch/arm/mach-omap2/board-3430sdp.c |    2 +-
> >  arch/arm/mach-omap2/board-ldp.c     |    2 +-
> >  2 files changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/arch/arm/mach-omap2/board-3430sdp.c
> > b/arch/arm/mach-omap2/board-3430sdp.c
> > index 03acac7..38550e2 100644
> > --- a/arch/arm/mach-omap2/board-3430sdp.c
> > +++ b/arch/arm/mach-omap2/board-3430sdp.c
> > @@ -473,7 +473,7 @@ static struct twl4030_ins wrst_seq[] __initdata = {
> >  };
> >  static struct twl4030_script wrst_script __initdata = {
> >        .script = wrst_seq,
> > -       .size   = ARRAY_SIZE(wakeup_seq),
> > +       .size   = ARRAY_SIZE(wrst_seq),
> >        .flags  = TRITON_WRST_SCRIPT,
> >  };
> >
> > diff --git a/arch/arm/mach-omap2/board-ldp.c b/arch/arm/mach-omap2/board-ldp.c
> > index 804fd8e..da814d7 100644
> > --- a/arch/arm/mach-omap2/board-ldp.c
> > +++ b/arch/arm/mach-omap2/board-ldp.c
> > @@ -450,7 +450,7 @@ static struct twl4030_ins wrst_seq[] __initdata = {
> >
> >  static struct twl4030_script wrst_script __initdata = {
> >        .script = wrst_seq,
> > -       .size   = ARRAY_SIZE(wakeup_seq),
> > +       .size   = ARRAY_SIZE(wrst_seq),
> >        .flags  = TRITON_WRST_SCRIPT,
> >  };
> >
> > --
> > 1.5.2.5
> >
> > --
> > Kyuwon (규원)
> >
> 
> -- 
> Kyuwon
> --
> 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] 6+ messages in thread

* Re: [PATCH] Fix the size of twl4030 script
  2009-05-13 23:40   ` Tony Lindgren
@ 2009-05-14  8:58     ` Peter 'p2' De Schrijver
  2009-05-14 15:18       ` Tony Lindgren
  0 siblings, 1 reply; 6+ messages in thread
From: Peter 'p2' De Schrijver @ 2009-05-14  8:58 UTC (permalink / raw)
  To: ext Tony Lindgren; +Cc: Kim Kyuwon, OMAP

On Thu, May 14, 2009 at 01:40:14AM +0200, ext Tony Lindgren wrote:
> * Kim Kyuwon <chammoru@gmail.com> [090506 18:36]:
> > Hi All,
> > 
> > I sent this patch about 1 month ago.
> > Can anybody check I'm sending correct patch?
> 
> Peter, care to ack? Any news on sending the scripts part of twl
> driver upstream?
> 
> Regards,

Ack. No news on sending this upstream yet. Too busy resolving other
problems now :(

Cheers,

Peter.

-- 
goa is a state of mind

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

* Re: [PATCH] Fix the size of twl4030 script
  2009-05-14  8:58     ` Peter 'p2' De Schrijver
@ 2009-05-14 15:18       ` Tony Lindgren
  0 siblings, 0 replies; 6+ messages in thread
From: Tony Lindgren @ 2009-05-14 15:18 UTC (permalink / raw)
  To: Peter 'p2' De Schrijver; +Cc: Kim Kyuwon, OMAP

* Peter 'p2' De Schrijver <peter.de-schrijver@nokia.com> [090514 01:58]:
> On Thu, May 14, 2009 at 01:40:14AM +0200, ext Tony Lindgren wrote:
> > * Kim Kyuwon <chammoru@gmail.com> [090506 18:36]:
> > > Hi All,
> > > 
> > > I sent this patch about 1 month ago.
> > > Can anybody check I'm sending correct patch?
> > 
> > Peter, care to ack? Any news on sending the scripts part of twl
> > driver upstream?
> > 
> > Regards,
> 
> Ack. No news on sending this upstream yet. Too busy resolving other
> problems now :(

Thanks, will push to l-o. Let's hope you'll get other issues out
of the way soon :)

Tony

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

* [APPLIED] [PATCH] Fix the size of twl4030 script
  2009-04-10  4:30 [PATCH] Fix the size of twl4030 script Kim Kyuwon
  2009-05-07  1:35 ` Kim Kyuwon
@ 2009-05-14 15:19 ` Tony Lindgren
  1 sibling, 0 replies; 6+ messages in thread
From: Tony Lindgren @ 2009-05-14 15:19 UTC (permalink / raw)
  To: linux-omap

This patch has been applied to the linux-omap
by youw fwiendly patch wobot.

Initial commit ID (Likely to change): f5e41f6b2a0ec9877d0ecee294afd57a8597c671

PatchWorks
http://patchwork.kernel.org/patch/17530/

Git (Likely to change, and takes a while to get mirrored)
http://git.kernel.org/?p=linux/kernel/git/tmlind/linux-omap-2.6.git;a=commit;h=f5e41f6b2a0ec9877d0ecee294afd57a8597c671



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

end of thread, other threads:[~2009-05-14 15:19 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-10  4:30 [PATCH] Fix the size of twl4030 script Kim Kyuwon
2009-05-07  1:35 ` Kim Kyuwon
2009-05-13 23:40   ` Tony Lindgren
2009-05-14  8:58     ` Peter 'p2' De Schrijver
2009-05-14 15:18       ` Tony Lindgren
2009-05-14 15:19 ` [APPLIED] " Tony Lindgren

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