public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] u-boot/master slight regression with trats
@ 2012-09-29 10:32 Albert ARIBAUD
  2012-09-29 10:52 ` [U-Boot] [PATCH] cmd_fat.c: fix build warning Anatolij Gustschin
  2012-09-29 15:17 ` [U-Boot] u-boot/master slight regression with trats Albert ARIBAUD
  0 siblings, 2 replies; 16+ messages in thread
From: Albert ARIBAUD @ 2012-09-29 10:32 UTC (permalink / raw)
  To: u-boot

Hello,

While merging u-boot-arm/master and u-boot/master I have noticed one
slight regression apparently coming from u-boot:

$ cat LOG/trats.ERR 
cmd_fat.c: In function ?do_fat_fswrite?:
cmd_fat.c:178:8: warning: unused variable ?ep? [-Wunused-variable]

ep should have disappeared along with the code which used it, but
somehow resurfaced (I suspect it did in a merge).

This warning is not seen in u-boot-arm.

Amicalement,
-- 
Albert.

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

* [U-Boot] [PATCH] cmd_fat.c: fix build warning
  2012-09-29 10:32 [U-Boot] u-boot/master slight regression with trats Albert ARIBAUD
@ 2012-09-29 10:52 ` Anatolij Gustschin
  2012-09-29 11:14   ` Anatolij Gustschin
  2012-09-29 17:01   ` Tom Rini
  2012-09-29 15:17 ` [U-Boot] u-boot/master slight regression with trats Albert ARIBAUD
  1 sibling, 2 replies; 16+ messages in thread
From: Anatolij Gustschin @ 2012-09-29 10:52 UTC (permalink / raw)
  To: u-boot

Commit cfda5aeab89d73779e26f0d34cf10f64caa67431
(cmd_fat: use common get_device_and_partition function)
introduced a warning:
cmd_fat.c: In function 'do_fat_fswrite':
cmd_fat.c:178:8: warning: unused variable 'ep' [-Wunused-variable]

Fix it.

Signed-off-by: Anatolij Gustschin <agust@denx.de>
---
 common/cmd_fat.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/common/cmd_fat.c b/common/cmd_fat.c
index 55585c6..5a5698b 100644
--- a/common/cmd_fat.c
+++ b/common/cmd_fat.c
@@ -175,7 +175,6 @@ static int do_fat_fswrite(cmd_tbl_t *cmdtp, int flag,
 	disk_partition_t info;
 	int dev = 0;
 	int part = 1;
-	char *ep;
 
 	if (argc < 5)
 		return cmd_usage(cmdtp);
-- 
1.7.1

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

* [U-Boot] [PATCH] cmd_fat.c: fix build warning
  2012-09-29 10:52 ` [U-Boot] [PATCH] cmd_fat.c: fix build warning Anatolij Gustschin
@ 2012-09-29 11:14   ` Anatolij Gustschin
  2012-09-29 15:19     ` Albert ARIBAUD
  2012-09-29 17:01   ` Tom Rini
  1 sibling, 1 reply; 16+ messages in thread
From: Anatolij Gustschin @ 2012-09-29 11:14 UTC (permalink / raw)
  To: u-boot

On Sat, 29 Sep 2012 12:52:55 +0200
Anatolij Gustschin <agust@denx.de> wrote:

> Commit cfda5aeab89d73779e26f0d34cf10f64caa67431
> (cmd_fat: use common get_device_and_partition function)
> introduced a warning:
> cmd_fat.c: In function 'do_fat_fswrite':
> cmd_fat.c:178:8: warning: unused variable 'ep' [-Wunused-variable]
> 
> Fix it.
> 
> Signed-off-by: Anatolij Gustschin <agust@denx.de>
> ---
>  common/cmd_fat.c |    1 -
>  1 files changed, 0 insertions(+), 1 deletions(-)

Reported-by: Albert ARIBAUD <albert.u.boot@aribaud.net>

I forgot to add attribution tag, so resending. patchwork hopefully
will add it when picking the patch.

Thanks,
Anatolij

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

* [U-Boot] u-boot/master slight regression with trats
  2012-09-29 10:32 [U-Boot] u-boot/master slight regression with trats Albert ARIBAUD
  2012-09-29 10:52 ` [U-Boot] [PATCH] cmd_fat.c: fix build warning Anatolij Gustschin
@ 2012-09-29 15:17 ` Albert ARIBAUD
  2012-09-29 18:22   ` Anatolij Gustschin
  1 sibling, 1 reply; 16+ messages in thread
From: Albert ARIBAUD @ 2012-09-29 15:17 UTC (permalink / raw)
  To: u-boot

Hi all,

On Sat, 29 Sep 2012 12:32:36 +0200, Albert ARIBAUD
<albert.u.boot@aribaud.net> wrote:

> Hello,
> 
> While merging u-boot-arm/master and u-boot/master I have noticed one
> slight regression apparently coming from u-boot:
> 
> $ cat LOG/trats.ERR 
> cmd_fat.c: In function ?do_fat_fswrite?:
> cmd_fat.c:178:8: warning: unused variable ?ep? [-Wunused-variable]
> 
> ep should have disappeared along with the code which used it, but
> somehow resurfaced (I suspect it did in a merge).
> 
> This warning is not seen in u-boot-arm.
> 
> Amicalement,

Seems Heungjun Kim <riverful.kim@samsung.com> is now a dead address.

Anatolij, I see you've sent out a patch. Does it mean you would act as
a maintainer for trats? Otherwise the board should be made orphan.

BTW, I'm not sure who should take your patch as a custodian, but my
take is, as the issue is now in u-boot/master, its fix could be applied
directly to u-boot/master. Tom?

Amicalement,
-- 
Albert.

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

* [U-Boot] [PATCH] cmd_fat.c: fix build warning
  2012-09-29 11:14   ` Anatolij Gustschin
@ 2012-09-29 15:19     ` Albert ARIBAUD
  0 siblings, 0 replies; 16+ messages in thread
From: Albert ARIBAUD @ 2012-09-29 15:19 UTC (permalink / raw)
  To: u-boot

Hi Anatolij,

On Sat, 29 Sep 2012 13:14:13 +0200, Anatolij Gustschin <agust@denx.de>
wrote:

> On Sat, 29 Sep 2012 12:52:55 +0200
> Anatolij Gustschin <agust@denx.de> wrote:
> 
> > Commit cfda5aeab89d73779e26f0d34cf10f64caa67431
> > (cmd_fat: use common get_device_and_partition function)
> > introduced a warning:
> > cmd_fat.c: In function 'do_fat_fswrite':
> > cmd_fat.c:178:8: warning: unused variable 'ep' [-Wunused-variable]
> > 
> > Fix it.
> > 
> > Signed-off-by: Anatolij Gustschin <agust@denx.de>
> > ---
> >  common/cmd_fat.c |    1 -
> >  1 files changed, 0 insertions(+), 1 deletions(-)
> 
> Reported-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
> 
> I forgot to add attribution tag, so resending. patchwork hopefully
> will add it when picking the patch.

For the record, it fixes the build issue. As the fix is trivial,

Tested-by: Albert ARIBAUD <albert.u.boot@aribaud.net>

> Thanks,
> Anatolij

Amicalement,
-- 
Albert.

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

* [U-Boot] [PATCH] cmd_fat.c: fix build warning
  2012-09-29 10:52 ` [U-Boot] [PATCH] cmd_fat.c: fix build warning Anatolij Gustschin
  2012-09-29 11:14   ` Anatolij Gustschin
@ 2012-09-29 17:01   ` Tom Rini
  1 sibling, 0 replies; 16+ messages in thread
From: Tom Rini @ 2012-09-29 17:01 UTC (permalink / raw)
  To: u-boot

On Sat, Sep 29, 2012 at 12:52:55PM +0200, Anatolij Gustschin wrote:

> Commit cfda5aeab89d73779e26f0d34cf10f64caa67431
> (cmd_fat: use common get_device_and_partition function)
> introduced a warning:
> cmd_fat.c: In function 'do_fat_fswrite':
> cmd_fat.c:178:8: warning: unused variable 'ep' [-Wunused-variable]
> 
> Fix it.
> 
> Signed-off-by: Anatolij Gustschin <agust@denx.de>

Applied to u-boot/master, thanks (and patchwork picked up the tags)!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20120929/7687c9fc/attachment.pgp>

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

* [U-Boot] u-boot/master slight regression with trats
  2012-09-29 15:17 ` [U-Boot] u-boot/master slight regression with trats Albert ARIBAUD
@ 2012-09-29 18:22   ` Anatolij Gustschin
  2012-10-01  9:21     ` Lukasz Majewski
  0 siblings, 1 reply; 16+ messages in thread
From: Anatolij Gustschin @ 2012-09-29 18:22 UTC (permalink / raw)
  To: u-boot

Hi all,

On Sat, 29 Sep 2012 17:17:48 +0200
Albert ARIBAUD <albert.u.boot@aribaud.net> wrote:

> Hi all,
> 
> On Sat, 29 Sep 2012 12:32:36 +0200, Albert ARIBAUD
> <albert.u.boot@aribaud.net> wrote:
> 
> > Hello,
> > 
> > While merging u-boot-arm/master and u-boot/master I have noticed one
> > slight regression apparently coming from u-boot:
> > 
> > $ cat LOG/trats.ERR 
> > cmd_fat.c: In function ?do_fat_fswrite?:
> > cmd_fat.c:178:8: warning: unused variable ?ep? [-Wunused-variable]
> > 
> > ep should have disappeared along with the code which used it, but
> > somehow resurfaced (I suspect it did in a merge).
> > 
> > This warning is not seen in u-boot-arm.
> > 
> > Amicalement,
> 
> Seems Heungjun Kim <riverful.kim@samsung.com> is now a dead address.
> 
> Anatolij, I see you've sent out a patch. Does it mean you would act as
> a maintainer for trats? Otherwise the board should be made orphan.

I do not have a trats board, so I can't do tests and act as a maintainer
for it. Lukasz (on Cc) recently submitted some patches for trats, maybe
he knows who could become new maintainer for trats board?

Thanks,
Anatolij

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

* [U-Boot] u-boot/master slight regression with trats
  2012-09-29 18:22   ` Anatolij Gustschin
@ 2012-10-01  9:21     ` Lukasz Majewski
  2012-10-01  9:31       ` Anatolij Gustschin
  2012-10-01 10:25       ` Lukasz Majewski
  0 siblings, 2 replies; 16+ messages in thread
From: Lukasz Majewski @ 2012-10-01  9:21 UTC (permalink / raw)
  To: u-boot

Hi all,

> 
> On Sat, 29 Sep 2012 17:17:48 +0200
> Albert ARIBAUD <albert.u.boot@aribaud.net> wrote:
> 
> > Hi all,
> > 
> > On Sat, 29 Sep 2012 12:32:36 +0200, Albert ARIBAUD
> > <albert.u.boot@aribaud.net> wrote:
> > 
> > > Hello,
> > > 
> > > While merging u-boot-arm/master and u-boot/master I have noticed
> > > one slight regression apparently coming from u-boot:
> > > 
> > > $ cat LOG/trats.ERR 
> > > cmd_fat.c: In function ?do_fat_fswrite?:
> > > cmd_fat.c:178:8: warning: unused variable ?ep? [-Wunused-variable]
> > > 
> > > ep should have disappeared along with the code which used it, but
> > > somehow resurfaced (I suspect it did in a merge).
> > > 
> > > This warning is not seen in u-boot-arm.
> > > 
> > > Amicalement,
> > 
> > Seems Heungjun Kim <riverful.kim@samsung.com> is now a dead address.
> > 
> > Anatolij, I see you've sent out a patch. Does it mean you would act
> > as a maintainer for trats? 
> > Otherwise the board should be made orphan.

Dear all, I was on a holidays :-). 

I can test if Trats is working. I posses one, so there is no problem
with that :-).

I will fix Trats ASAP.

> 
> I do not have a trats board, so I can't do tests and act as a
> maintainer for it. Lukasz (on Cc) recently submitted some patches for
> trats, maybe he knows who could become new maintainer for trats board?
> 




-- 
Best regards,

Lukasz Majewski

Samsung Poland R&D Center | Linux Platform Group

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

* [U-Boot] u-boot/master slight regression with trats
  2012-10-01  9:21     ` Lukasz Majewski
@ 2012-10-01  9:31       ` Anatolij Gustschin
  2012-10-01 10:25       ` Lukasz Majewski
  1 sibling, 0 replies; 16+ messages in thread
From: Anatolij Gustschin @ 2012-10-01  9:31 UTC (permalink / raw)
  To: u-boot

Hi Lukasz,

On Mon, 01 Oct 2012 11:21:59 +0200
Lukasz Majewski <l.majewski@samsung.com> wrote:
...
> > > Seems Heungjun Kim <riverful.kim@samsung.com> is now a dead address.
> > > 
> > > Anatolij, I see you've sent out a patch. Does it mean you would act
> > > as a maintainer for trats? 
> > > Otherwise the board should be made orphan.
> 
> Dear all, I was on a holidays :-). 
> 
> I can test if Trats is working. I posses one, so there is no problem
> with that :-).
> 
> I will fix Trats ASAP.

Please note that Tom applied a warning fix into 
git://git.denx.de/u-boot.git master

Thanks,
Anatolij

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

* [U-Boot] u-boot/master slight regression with trats
  2012-10-01  9:21     ` Lukasz Majewski
  2012-10-01  9:31       ` Anatolij Gustschin
@ 2012-10-01 10:25       ` Lukasz Majewski
  2012-10-01 14:12         ` Tom Rini
  1 sibling, 1 reply; 16+ messages in thread
From: Lukasz Majewski @ 2012-10-01 10:25 UTC (permalink / raw)
  To: u-boot

Hi all,

> 
> > 
> > On Sat, 29 Sep 2012 17:17:48 +0200
> > Albert ARIBAUD <albert.u.boot@aribaud.net> wrote:
> > 
> > > Hi all,
> > > 
> > > On Sat, 29 Sep 2012 12:32:36 +0200, Albert ARIBAUD
> > > <albert.u.boot@aribaud.net> wrote:
> > > 
> > > > Hello,
> > > > 
> > > > While merging u-boot-arm/master and u-boot/master I have noticed
> > > > one slight regression apparently coming from u-boot:
> > > > 
> > > > $ cat LOG/trats.ERR 
> > > > cmd_fat.c: In function ?do_fat_fswrite?:
> > > > cmd_fat.c:178:8: warning: unused variable
> > > > ?ep? [-Wunused-variable]
> > > > 
> > > > ep should have disappeared along with the code which used it,
> > > > but somehow resurfaced (I suspect it did in a merge).
> > > > 
> > > > This warning is not seen in u-boot-arm.
> > > > 
> > > > Amicalement,
> > > 
> > > Seems Heungjun Kim <riverful.kim@samsung.com> is now a dead
> > > address.
> > > 
> > > Anatolij, I see you've sent out a patch. Does it mean you would
> > > act as a maintainer for trats? 
> > > Otherwise the board should be made orphan.
> 
> Dear all, I was on a holidays :-). 
> 
> I can test if Trats is working. I posses one, so there is no problem
> with that :-).
> 
> I will fix Trats ASAP.

I've just tested TRATS with the newest origin/master 
(SHA1: 4668a086bb0a769b741e3a4ffab85f1c41c7cdb8 )

It builds without errors/warinigs

> 
> > 
> > I do not have a trats board, so I can't do tests and act as a
> > maintainer for it. Lukasz (on Cc) recently submitted some patches
> > for trats, maybe he knows who could become new maintainer for trats
> > board?
> > 




-- 
Best regards,

Lukasz Majewski

Samsung Poland R&D Center | Linux Platform Group

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

* [U-Boot] u-boot/master slight regression with trats
  2012-10-01 10:25       ` Lukasz Majewski
@ 2012-10-01 14:12         ` Tom Rini
  2012-10-02  6:58           ` Lukasz Majewski
  0 siblings, 1 reply; 16+ messages in thread
From: Tom Rini @ 2012-10-01 14:12 UTC (permalink / raw)
  To: u-boot

On Mon, Oct 01, 2012 at 12:25:34PM +0200, Lukasz Majewski wrote:
> Hi all,
> 
> > 
> > > 
> > > On Sat, 29 Sep 2012 17:17:48 +0200
> > > Albert ARIBAUD <albert.u.boot@aribaud.net> wrote:
> > > 
> > > > Hi all,
> > > > 
> > > > On Sat, 29 Sep 2012 12:32:36 +0200, Albert ARIBAUD
> > > > <albert.u.boot@aribaud.net> wrote:
> > > > 
> > > > > Hello,
> > > > > 
> > > > > While merging u-boot-arm/master and u-boot/master I have noticed
> > > > > one slight regression apparently coming from u-boot:
> > > > > 
> > > > > $ cat LOG/trats.ERR 
> > > > > cmd_fat.c: In function ???do_fat_fswrite???:
> > > > > cmd_fat.c:178:8: warning: unused variable
> > > > > ???ep??? [-Wunused-variable]
> > > > > 
> > > > > ep should have disappeared along with the code which used it,
> > > > > but somehow resurfaced (I suspect it did in a merge).
> > > > > 
> > > > > This warning is not seen in u-boot-arm.
> > > > > 
> > > > > Amicalement,
> > > > 
> > > > Seems Heungjun Kim <riverful.kim@samsung.com> is now a dead
> > > > address.
> > > > 
> > > > Anatolij, I see you've sent out a patch. Does it mean you would
> > > > act as a maintainer for trats? 
> > > > Otherwise the board should be made orphan.
> > 
> > Dear all, I was on a holidays :-). 
> > 
> > I can test if Trats is working. I posses one, so there is no problem
> > with that :-).
> > 
> > I will fix Trats ASAP.
> 
> I've just tested TRATS with the newest origin/master 
> (SHA1: 4668a086bb0a769b741e3a4ffab85f1c41c7cdb8 )
> 
> It builds without errors/warinigs
> 
> > 
> > > 
> > > I do not have a trats board, so I can't do tests and act as a
> > > maintainer for it. Lukasz (on Cc) recently submitted some patches
> > > for trats, maybe he knows who could become new maintainer for trats
> > > board?

Ah, but would you be willing to take the MAINTAINER spot for the board?
Thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20121001/763b7176/attachment.pgp>

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

* [U-Boot] u-boot/master slight regression with trats
  2012-10-01 14:12         ` Tom Rini
@ 2012-10-02  6:58           ` Lukasz Majewski
  2012-10-02  7:03             ` Kyungmin Park
  0 siblings, 1 reply; 16+ messages in thread
From: Lukasz Majewski @ 2012-10-02  6:58 UTC (permalink / raw)
  To: u-boot

Hi Tom,

> On Mon, Oct 01, 2012 at 12:25:34PM +0200, Lukasz Majewski wrote:
> > Hi all,
> > 
> > > 
> > > > 
> > > > On Sat, 29 Sep 2012 17:17:48 +0200
> > > > Albert ARIBAUD <albert.u.boot@aribaud.net> wrote:
> > > > 
> > > > > Hi all,
> > > > > 
> > > > > On Sat, 29 Sep 2012 12:32:36 +0200, Albert ARIBAUD
> > > > > <albert.u.boot@aribaud.net> wrote:
> > > > > 
> > > > > > Hello,
> > > > > > 
> > > > > > While merging u-boot-arm/master and u-boot/master I have
> > > > > > noticed one slight regression apparently coming from u-boot:
> > > > > > 
> > > > > > $ cat LOG/trats.ERR 
> > > > > > cmd_fat.c: In function ???do_fat_fswrite???:
> > > > > > cmd_fat.c:178:8: warning: unused variable
> > > > > > ???ep??? [-Wunused-variable]
> > > > > > 
> > > > > > ep should have disappeared along with the code which used
> > > > > > it, but somehow resurfaced (I suspect it did in a merge).
> > > > > > 
> > > > > > This warning is not seen in u-boot-arm.
> > > > > > 
> > > > > > Amicalement,
> > > > > 
> > > > > Seems Heungjun Kim <riverful.kim@samsung.com> is now a dead
> > > > > address.
> > > > > 
> > > > > Anatolij, I see you've sent out a patch. Does it mean you
> > > > > would act as a maintainer for trats? 
> > > > > Otherwise the board should be made orphan.
> > > 
> > > Dear all, I was on a holidays :-). 
> > > 
> > > I can test if Trats is working. I posses one, so there is no
> > > problem with that :-).
> > > 
> > > I will fix Trats ASAP.
> > 
> > I've just tested TRATS with the newest origin/master 
> > (SHA1: 4668a086bb0a769b741e3a4ffab85f1c41c7cdb8 )
> > 
> > It builds without errors/warinigs
> > 
> > > 
> > > > 
> > > > I do not have a trats board, so I can't do tests and act as a
> > > > maintainer for it. Lukasz (on Cc) recently submitted some
> > > > patches for trats, maybe he knows who could become new
> > > > maintainer for trats board?
> 
> Ah, but would you be willing to take the MAINTAINER spot for the
> board? Thanks!
> 

I can serve as a maintainer for the board - I posses one and I
actively develop and test code for it. No problem with that.

-- 
Best regards,

Lukasz Majewski

Samsung Poland R&D Center | Linux Platform Group

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

* [U-Boot] u-boot/master slight regression with trats
  2012-10-02  6:58           ` Lukasz Majewski
@ 2012-10-02  7:03             ` Kyungmin Park
  2012-10-02 16:32               ` [U-Boot] [PATCH] MAINTAINERS: New maintainer for Samsung's Trats development board Lukasz Majewski
  0 siblings, 1 reply; 16+ messages in thread
From: Kyungmin Park @ 2012-10-02  7:03 UTC (permalink / raw)
  To: u-boot

On 10/2/12, Lukasz Majewski <l.majewski@samsung.com> wrote:
> Hi Tom,
>
>> On Mon, Oct 01, 2012 at 12:25:34PM +0200, Lukasz Majewski wrote:
>> > Hi all,
>> >
>> > >
>> > > >
>> > > > On Sat, 29 Sep 2012 17:17:48 +0200
>> > > > Albert ARIBAUD <albert.u.boot@aribaud.net> wrote:
>> > > >
>> > > > > Hi all,
>> > > > >
>> > > > > On Sat, 29 Sep 2012 12:32:36 +0200, Albert ARIBAUD
>> > > > > <albert.u.boot@aribaud.net> wrote:
>> > > > >
>> > > > > > Hello,
>> > > > > >
>> > > > > > While merging u-boot-arm/master and u-boot/master I have
>> > > > > > noticed one slight regression apparently coming from u-boot:
>> > > > > >
>> > > > > > $ cat LOG/trats.ERR
>> > > > > > cmd_fat.c: In function ???do_fat_fswrite???:
>> > > > > > cmd_fat.c:178:8: warning: unused variable
>> > > > > > ???ep??? [-Wunused-variable]
>> > > > > >
>> > > > > > ep should have disappeared along with the code which used
>> > > > > > it, but somehow resurfaced (I suspect it did in a merge).
>> > > > > >
>> > > > > > This warning is not seen in u-boot-arm.
>> > > > > >
>> > > > > > Amicalement,
>> > > > >
>> > > > > Seems Heungjun Kim <riverful.kim@samsung.com> is now a dead
>> > > > > address.
>> > > > >
>> > > > > Anatolij, I see you've sent out a patch. Does it mean you
>> > > > > would act as a maintainer for trats?
>> > > > > Otherwise the board should be made orphan.
>> > >
>> > > Dear all, I was on a holidays :-).
>> > >
>> > > I can test if Trats is working. I posses one, so there is no
>> > > problem with that :-).
>> > >
>> > > I will fix Trats ASAP.
>> >
>> > I've just tested TRATS with the newest origin/master
>> > (SHA1: 4668a086bb0a769b741e3a4ffab85f1c41c7cdb8 )
>> >
>> > It builds without errors/warinigs
>> >
>> > >
>> > > >
>> > > > I do not have a trats board, so I can't do tests and act as a
>> > > > maintainer for it. Lukasz (on Cc) recently submitted some
>> > > > patches for trats, maybe he knows who could become new
>> > > > maintainer for trats board?
>>
>> Ah, but would you be willing to take the MAINTAINER spot for the
>> board? Thanks!
>>
>
> I can serve as a maintainer for the board - I posses one and I
> actively develop and test code for it. No problem with that.
Acked-by: Kyungmin Park <kyungmin.park@samsung.com>

Note that Mr. Kim left the company and Lukasz can take over trats board support.

Thank you,
Kyungmin Park
>
> --
> Best regards,
>
> Lukasz Majewski
>
> Samsung Poland R&D Center | Linux Platform Group
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
>

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

* [U-Boot] [PATCH] MAINTAINERS: New maintainer for Samsung's Trats development board.
  2012-10-02  7:03             ` Kyungmin Park
@ 2012-10-02 16:32               ` Lukasz Majewski
  2012-10-02 22:07                 ` [U-Boot] " Tom Rini
  0 siblings, 1 reply; 16+ messages in thread
From: Lukasz Majewski @ 2012-10-02 16:32 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
 MAINTAINERS |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index aa54fe1..eb96035 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -727,7 +727,7 @@ Chander Kashyap <k.chander@samsung.com>
 	SMDKV310		ARM ARMV7 (EXYNOS4210 SoC)
 	SMDK5250		ARM ARMV7 (EXYNOS5250 SoC)
 
-Heungjun Kim <riverful.kim@samsung.com>
+Lukasz Majewski <l.majewski@samsung.com>
 
 	trats			ARM ARMV7 (EXYNOS4210 SoC)
 
-- 
1.7.2.3

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

* [U-Boot] MAINTAINERS: New maintainer for Samsung's Trats development board.
  2012-10-02 16:32               ` [U-Boot] [PATCH] MAINTAINERS: New maintainer for Samsung's Trats development board Lukasz Majewski
@ 2012-10-02 22:07                 ` Tom Rini
  2012-10-04  2:41                   ` Minkyu Kang
  0 siblings, 1 reply; 16+ messages in thread
From: Tom Rini @ 2012-10-02 22:07 UTC (permalink / raw)
  To: u-boot

On Tue, Oct 02, 2012 at 06:32:07AM -0000, Lukasz Majewski wrote:

> Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
> 
> ---
> MAINTAINERS |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20121002/8d5d3cd2/attachment.pgp>

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

* [U-Boot] MAINTAINERS: New maintainer for Samsung's Trats development board.
  2012-10-02 22:07                 ` [U-Boot] " Tom Rini
@ 2012-10-04  2:41                   ` Minkyu Kang
  0 siblings, 0 replies; 16+ messages in thread
From: Minkyu Kang @ 2012-10-04  2:41 UTC (permalink / raw)
  To: u-boot

Dear Tom and Lukasz,

On 3 October 2012 07:07, Tom Rini <trini@ti.com> wrote:
> On Tue, Oct 02, 2012 at 06:32:07AM -0000, Lukasz Majewski wrote:
>
>> Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
>> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
>>
>> ---
>> MAINTAINERS |    2 +-
>>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> Applied to u-boot/master, thanks!
>

We need to keep this list to Alphabetical.
So, Lukasz's name should be moved to "M" section.

Thanks.
Minkyu Kang.
-- 
from. prom.
www.promsoft.net

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

end of thread, other threads:[~2012-10-04  2:41 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-29 10:32 [U-Boot] u-boot/master slight regression with trats Albert ARIBAUD
2012-09-29 10:52 ` [U-Boot] [PATCH] cmd_fat.c: fix build warning Anatolij Gustschin
2012-09-29 11:14   ` Anatolij Gustschin
2012-09-29 15:19     ` Albert ARIBAUD
2012-09-29 17:01   ` Tom Rini
2012-09-29 15:17 ` [U-Boot] u-boot/master slight regression with trats Albert ARIBAUD
2012-09-29 18:22   ` Anatolij Gustschin
2012-10-01  9:21     ` Lukasz Majewski
2012-10-01  9:31       ` Anatolij Gustschin
2012-10-01 10:25       ` Lukasz Majewski
2012-10-01 14:12         ` Tom Rini
2012-10-02  6:58           ` Lukasz Majewski
2012-10-02  7:03             ` Kyungmin Park
2012-10-02 16:32               ` [U-Boot] [PATCH] MAINTAINERS: New maintainer for Samsung's Trats development board Lukasz Majewski
2012-10-02 22:07                 ` [U-Boot] " Tom Rini
2012-10-04  2:41                   ` Minkyu Kang

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