Re: [PATCH] powerpc/legacy_serial: fix incorrect placement of __initdata tag

2013-10-08 Thread Bartlomiej Zolnierkiewicz
On Tuesday, October 08, 2013 02:56:23 PM Michael Ellerman wrote: On Thu, Oct 03, 2013 at 01:51:27PM +0200, Bartlomiej Zolnierkiewicz wrote: On Tuesday, October 01, 2013 04:13:25 PM Michael Ellerman wrote: On Mon, Sep 30, 2013 at 03:11:42PM +0200, Bartlomiej Zolnierkiewicz wrote:

Re: [PATCH] powerpc/legacy_serial: fix incorrect placement of __initdata tag

2013-10-07 Thread Michael Ellerman
On Thu, Oct 03, 2013 at 01:51:27PM +0200, Bartlomiej Zolnierkiewicz wrote: On Tuesday, October 01, 2013 04:13:25 PM Michael Ellerman wrote: On Mon, Sep 30, 2013 at 03:11:42PM +0200, Bartlomiej Zolnierkiewicz wrote: __initdata tag should be placed between the variable name and equal sign

Re: [PATCH] powerpc/legacy_serial: fix incorrect placement of __initdata tag

2013-10-03 Thread Bartlomiej Zolnierkiewicz
On Tuesday, October 01, 2013 04:13:25 PM Michael Ellerman wrote: On Mon, Sep 30, 2013 at 03:11:42PM +0200, Bartlomiej Zolnierkiewicz wrote: __initdata tag should be placed between the variable name and equal sign for the variable to be placed in the intended .init.data section. I see lots

Re: [PATCH] powerpc/legacy_serial: fix incorrect placement of __initdata tag

2013-10-01 Thread Michael Ellerman
On Mon, Sep 30, 2013 at 03:11:42PM +0200, Bartlomiej Zolnierkiewicz wrote: __initdata tag should be placed between the variable name and equal sign for the variable to be placed in the intended .init.data section. I see lots of other occurences of that in arch/powerpc. Why not send a single

[PATCH] powerpc/legacy_serial: fix incorrect placement of __initdata tag

2013-09-30 Thread Bartlomiej Zolnierkiewicz
__initdata tag should be placed between the variable name and equal sign for the variable to be placed in the intended .init.data section. Signed-off-by: Bartlomiej Zolnierkiewicz b.zolnier...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com ---