Re: [PATCH] spl: Move check for SPL_LIBCOMMON support to header

2022-07-25 Thread Tom Rini
On Fri, Jul 15, 2022 at 10:35:00AM -0500, Andrew Davis wrote: > From: "Andrew F. Davis" > > Print statements in SPL depend on lib/common support, due to this many > such print statements are ifdef'd. Instead of checking at each call site > move the check to the common.h header and remove these i

Re: [PATCH] spl: Move check for SPL_LIBCOMMON support to header

2022-07-18 Thread Tom Rini
On Fri, Jul 15, 2022 at 10:35:00AM -0500, Andrew Davis wrote: > From: "Andrew F. Davis" > > Print statements in SPL depend on lib/common support, due to this many > such print statements are ifdef'd. Instead of checking at each call site > move the check to the common.h header and remove these i

Re: [PATCH] spl: Move check for SPL_LIBCOMMON support to header

2022-07-17 Thread Andrew Davis
On 7/16/22 7:00 AM, Simon Glass wrote: Hi Andrew, On Fri, 15 Jul 2022 at 09:35, Andrew Davis wrote: From: "Andrew F. Davis" Print statements in SPL depend on lib/common support, due to this many such print statements are ifdef'd. Instead of checking at each call site move the check to the c

Re: [PATCH] spl: Move check for SPL_LIBCOMMON support to header

2022-07-16 Thread Simon Glass
Hi Andrew, On Fri, 15 Jul 2022 at 09:35, Andrew Davis wrote: > > From: "Andrew F. Davis" > > Print statements in SPL depend on lib/common support, due to this many > such print statements are ifdef'd. Instead of checking at each call site > move the check to the common.h header and remove these

[PATCH] spl: Move check for SPL_LIBCOMMON support to header

2022-07-15 Thread Andrew Davis
From: "Andrew F. Davis" Print statements in SPL depend on lib/common support, due to this many such print statements are ifdef'd. Instead of checking at each call site move the check to the common.h header and remove these inline checks. Signed-off-by: Andrew F. Davis Reviewed-by: Simon Glass