embeddedsw icon indicating copy to clipboard operation
embeddedsw copied to clipboard

xfsbl_debug.h depends on xfsbl_error.h but it is not included

Open StefanoPietrosanti opened this issue 1 year ago • 0 comments

In xfsbl_debug.h, line 70 https://github.com/Xilinx/embeddedsw/blob/master/lib/sw_apps/zynqmp_fsbl/src/xfsbl_debug.h#L70 :

#define XFsbl_Printf(DebugType,...) \
		if(((DebugType) & XFsblDbgCurrentTypes)!=XFSBL_SUCCESS) {xil_printf (__VA_ARGS__); }

XFSBL_SUCCESS is defined in xfsbl_error.h but it is not included in xfsbl_debug.h.

StefanoPietrosanti avatar Mar 09 '23 14:03 StefanoPietrosanti