Re: [PATCH 20/21] powerpc/ps3: remove inline marking of EXPORT_SYMBOL functions

2013-05-28 Thread Geoff Levand
Hi Geert, On Fri, 2013-05-17 at 18:05 +0200, Geert Uytterhoeven wrote: > On Thu, May 9, 2013 at 12:36 PM, Denis Efremov > wrote: > > -inline u64 ps3_get_spe_id(void *arg) > > +u64 ps3_get_spe_id(void *arg) > > { > > return spu_pdata(arg)->spe_id; > > } > > FYI, this symbol is not used

Re: [PATCH 20/21] powerpc/ps3: remove inline marking of EXPORT_SYMBOL functions

2013-05-17 Thread Geert Uytterhoeven
On Thu, May 9, 2013 at 12:36 PM, Denis Efremov wrote: > EXPORT_SYMBOL and inline directives are contradictory to each other. > The patch fixes this inconsistency. > > Found by Linux Driver Verification project (linuxtesting.org). > > Signed-off-by: Denis Efremov > --- > arch/powerpc/platforms/ps

Re: [PATCH 20/21] powerpc/ps3: remove inline marking of EXPORT_SYMBOL functions

2013-05-09 Thread Geoff Levand
On Thu, 2013-05-09 at 14:36 +0400, Denis Efremov wrote: > EXPORT_SYMBOL and inline directives are contradictory to each other. > The patch fixes this inconsistency. > > Found by Linux Driver Verification project (linuxtesting.org). > > Signed-off-by: Denis Efremov > --- > arch/powerpc/platforms