Re (97) linux-m68k@vger.kernel.org

2018-07-27 Thread Xaver
linux-m68k@vger.kernel.org >> $8197

Re: [PATCH] fb: amifb: fix build warnings when not builtin

2018-07-27 Thread Geert Uytterhoeven
Hi Randy, On Fri, Jul 27, 2018 at 2:00 AM Randy Dunlap wrote: > From: Randy Dunlap > > Fix build warning when built as a loadable module. > amifb_setup() and amifb_setup_mcap() are only needed when the driver > is builtin. > This matches how the functions are called (using #ifndef MODULE). > >

Re: m68k allmodconfig build errors

2018-07-27 Thread Andreas Schwab
On Jul 27 2018, Finn Thain wrote: > Why doesn't gcc convert strncmp to __builtin_strcmp? It does. In fact, it first converts strncmp to __builtin_strncmp, then optimizes it to __builtin_strcmp. Finally, __bultin_strcmp is expanded to a call to strcmp. Andreas. -- Andreas Schwab,

Re: m68k allmodconfig build errors

2018-07-27 Thread Finn Thain
On Fri, 27 Jul 2018, Andreas Schwab wrote: > On Jul 27 2018, Finn Thain wrote: > > > Why doesn't gcc convert strncmp to __builtin_strcmp? > > It does. In fact, it first converts strncmp to __builtin_strncmp, then > optimizes it to __builtin_strcmp. Finally, __bultin_strcmp is expanded > to