This is an automated email from the ASF dual-hosted git repository. masayuki pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit e725829547f63cd45917122352c5985cb87675c0 Author: SPRESENSE <[email protected]> AuthorDate: Thu Feb 10 19:28:23 2022 +0900 cxd56xx/cxd56_emmc.c: Fix compile warning Add necessary include header named debug.h for using ferr and finfo. --- arch/arm/src/cxd56xx/cxd56_emmc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/src/cxd56xx/cxd56_emmc.c b/arch/arm/src/cxd56xx/cxd56_emmc.c index f74857492d..8d3bb18c6f 100644 --- a/arch/arm/src/cxd56xx/cxd56_emmc.c +++ b/arch/arm/src/cxd56xx/cxd56_emmc.c @@ -28,6 +28,7 @@ #include <stdint.h> #include <string.h> #include <assert.h> +#include <debug.h> #include <errno.h> #include <nuttx/arch.h>
