Re: [PATCH] plist: include -DDEBUG if CONFIG_DEBUG_PI_LIST

2014-05-05 Thread Dan Streetman
On Fri, May 2, 2014 at 4:41 PM, Steven Rostedt wrote: > On Fri, 2 May 2014 16:23:43 -0400 > Dan Streetman wrote: > >> lib/plist.c uses pr_debug() in its test function, which is compiled >> and run only when CONFIG_DEBUG_PI_LIST in set; however pr_debug() >> is compiled out unless -DDEBUG is set

Re: [PATCH] plist: include -DDEBUG if CONFIG_DEBUG_PI_LIST

2014-05-05 Thread Dan Streetman
On Fri, May 2, 2014 at 4:41 PM, Steven Rostedt rost...@goodmis.org wrote: On Fri, 2 May 2014 16:23:43 -0400 Dan Streetman ddstr...@ieee.org wrote: lib/plist.c uses pr_debug() in its test function, which is compiled and run only when CONFIG_DEBUG_PI_LIST in set; however pr_debug() is

Re: [PATCH] plist: include -DDEBUG if CONFIG_DEBUG_PI_LIST

2014-05-02 Thread Steven Rostedt
On Fri, 2 May 2014 16:23:43 -0400 Dan Streetman wrote: > lib/plist.c uses pr_debug() in its test function, which is compiled > and run only when CONFIG_DEBUG_PI_LIST in set; however pr_debug() > is compiled out unless -DDEBUG is set for the file. > > Update lib/Makefile to add -DDEBUG to

[PATCH] plist: include -DDEBUG if CONFIG_DEBUG_PI_LIST

2014-05-02 Thread Dan Streetman
lib/plist.c uses pr_debug() in its test function, which is compiled and run only when CONFIG_DEBUG_PI_LIST in set; however pr_debug() is compiled out unless -DDEBUG is set for the file. Update lib/Makefile to add -DDEBUG to CFLAGS_plist.o if CONFIG_DEBUG_PI_LIST is set, so that the pr_debug()

[PATCH] plist: include -DDEBUG if CONFIG_DEBUG_PI_LIST

2014-05-02 Thread Dan Streetman
lib/plist.c uses pr_debug() in its test function, which is compiled and run only when CONFIG_DEBUG_PI_LIST in set; however pr_debug() is compiled out unless -DDEBUG is set for the file. Update lib/Makefile to add -DDEBUG to CFLAGS_plist.o if CONFIG_DEBUG_PI_LIST is set, so that the pr_debug()

Re: [PATCH] plist: include -DDEBUG if CONFIG_DEBUG_PI_LIST

2014-05-02 Thread Steven Rostedt
On Fri, 2 May 2014 16:23:43 -0400 Dan Streetman ddstr...@ieee.org wrote: lib/plist.c uses pr_debug() in its test function, which is compiled and run only when CONFIG_DEBUG_PI_LIST in set; however pr_debug() is compiled out unless -DDEBUG is set for the file. Update lib/Makefile to add