Re: [1/2] powerpc/4xx/ocm: Fix phys_addr_t printf warnings

2019-01-11 Thread Michael Ellerman
Christian Lamparter writes: > On Tuesday, January 8, 2019 10:54:28 AM CET Michael Ellerman wrote: >> Christian Lamparter writes: ... >> diff --git a/arch/powerpc/platforms/4xx/ocm.c >> b/arch/powerpc/platforms/4xx/ocm.c >> index a1aaa1569d7c..f0e488d97567 100644 >> ---

Re: [1/2] powerpc/4xx/ocm: Fix phys_addr_t printf warnings

2019-01-08 Thread Christian Lamparter
On Tuesday, January 8, 2019 10:54:28 AM CET Michael Ellerman wrote: > Christian Lamparter writes: > > On Wednesday, January 2, 2019 12:31:50 PM CET Michael Ellerman wrote: > >> On Tue, 2019-01-01 at 03:56:00 UTC, Michael Ellerman wrote: > >> > Currently the code produces several warnings, eg: >

Re: [1/2] powerpc/4xx/ocm: Fix phys_addr_t printf warnings

2019-01-08 Thread Michael Ellerman
Christian Lamparter writes: > On Wednesday, January 2, 2019 12:31:50 PM CET Michael Ellerman wrote: >> On Tue, 2019-01-01 at 03:56:00 UTC, Michael Ellerman wrote: >> > Currently the code produces several warnings, eg: >> > >> > arch/powerpc/platforms/4xx/ocm.c:240:38: error: format '%llx' >> >

Re: [1/2] powerpc/4xx/ocm: Fix phys_addr_t printf warnings

2019-01-04 Thread Christian Lamparter
On Wednesday, January 2, 2019 12:31:50 PM CET Michael Ellerman wrote: > On Tue, 2019-01-01 at 03:56:00 UTC, Michael Ellerman wrote: > > Currently the code produces several warnings, eg: > > > > arch/powerpc/platforms/4xx/ocm.c:240:38: error: format '%llx' > > expects argument of type 'long

Re: [1/2] powerpc/4xx/ocm: Fix phys_addr_t printf warnings

2019-01-02 Thread Michael Ellerman
On Tue, 2019-01-01 at 03:56:00 UTC, Michael Ellerman wrote: > Currently the code produces several warnings, eg: > > arch/powerpc/platforms/4xx/ocm.c:240:38: error: format '%llx' > expects argument of type 'long long unsigned int', but argument 3 > has type 'phys_addr_t {aka unsigned int}' >

Re: [PATCH 1/2] powerpc/4xx/ocm: Fix phys_addr_t printf warnings

2019-01-02 Thread Michael Ellerman
LEROY Christophe writes: > Michael Ellerman a écrit : > >> Currently the code produces several warnings, eg: >> >> arch/powerpc/platforms/4xx/ocm.c:240:38: error: format '%llx' >> expects argument of type 'long long unsigned int', but argument 3 >> has type 'phys_addr_t {aka unsigned

Re: [PATCH 1/2] powerpc/4xx/ocm: Fix phys_addr_t printf warnings

2019-01-01 Thread LEROY Christophe
Michael Ellerman a écrit : Currently the code produces several warnings, eg: arch/powerpc/platforms/4xx/ocm.c:240:38: error: format '%llx' expects argument of type 'long long unsigned int', but argument 3 has type 'phys_addr_t {aka unsigned int}' seq_printf(m, "PhysAddr :

[PATCH 1/2] powerpc/4xx/ocm: Fix phys_addr_t printf warnings

2018-12-31 Thread Michael Ellerman
Currently the code produces several warnings, eg: arch/powerpc/platforms/4xx/ocm.c:240:38: error: format '%llx' expects argument of type 'long long unsigned int', but argument 3 has type 'phys_addr_t {aka unsigned int}' seq_printf(m, "PhysAddr : 0x%llx\n", ocm->phys);