Re: [PATCH 09/12] tty/console: fix warnings in drivers/tty/serial/kgdboc.c

2012-10-22 Thread Greg Kroah-Hartman
On Fri, Sep 28, 2012 at 04:45:37PM -0500, Jason Wessel wrote: > On 09/28/2012 04:36 PM, Arnd Bergmann wrote: > > The con_debug_leave/con_debug_enter functions are stubbed out > > by defining them to (0), which causes harmless build warnings. > > Using proper inline functions is the normal way to

Re: [PATCH 09/12] tty/console: fix warnings in drivers/tty/serial/kgdboc.c

2012-10-22 Thread Greg Kroah-Hartman
On Fri, Sep 28, 2012 at 04:45:37PM -0500, Jason Wessel wrote: On 09/28/2012 04:36 PM, Arnd Bergmann wrote: The con_debug_leave/con_debug_enter functions are stubbed out by defining them to (0), which causes harmless build warnings. Using proper inline functions is the normal way to deal

Re: [PATCH 09/12] tty/console: fix warnings in drivers/tty/serial/kgdboc.c

2012-09-28 Thread Jason Wessel
On 09/28/2012 04:36 PM, Arnd Bergmann wrote: > The con_debug_leave/con_debug_enter functions are stubbed out > by defining them to (0), which causes harmless build warnings. > Using proper inline functions is the normal way to deal with > this. > > Without this patch, building the ARM

[PATCH 09/12] tty/console: fix warnings in drivers/tty/serial/kgdboc.c

2012-09-28 Thread Arnd Bergmann
The con_debug_leave/con_debug_enter functions are stubbed out by defining them to (0), which causes harmless build warnings. Using proper inline functions is the normal way to deal with this. Without this patch, building the ARM bcm2835_defconfig results in: drivers/tty/serial/kgdboc.c: In

[PATCH 09/12] tty/console: fix warnings in drivers/tty/serial/kgdboc.c

2012-09-28 Thread Arnd Bergmann
The con_debug_leave/con_debug_enter functions are stubbed out by defining them to (0), which causes harmless build warnings. Using proper inline functions is the normal way to deal with this. Without this patch, building the ARM bcm2835_defconfig results in: drivers/tty/serial/kgdboc.c: In

Re: [PATCH 09/12] tty/console: fix warnings in drivers/tty/serial/kgdboc.c

2012-09-28 Thread Jason Wessel
On 09/28/2012 04:36 PM, Arnd Bergmann wrote: The con_debug_leave/con_debug_enter functions are stubbed out by defining them to (0), which causes harmless build warnings. Using proper inline functions is the normal way to deal with this. Without this patch, building the ARM bcm2835_defconfig