You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2021/07/04 05:36:19 UTC

[incubator-nuttx] 06/13: arch: cxd56x: emmc: Minor fix undefined configuration name

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit 6a2733dd05253d152d0f6a05abd48a20d843ef67
Author: SPRESENSE <41...@users.noreply.github.com>
AuthorDate: Sun Jul 4 12:53:22 2021 +0900

    arch: cxd56x: emmc: Minor fix undefined configuration name
    
    Replace obsolete CONFIG_DEBUG_VERBOSE to CONFIG_DEBUG_FS_INFO.
---
 arch/arm/src/cxd56xx/cxd56_emmc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/src/cxd56xx/cxd56_emmc.c b/arch/arm/src/cxd56xx/cxd56_emmc.c
index 29271be..b1430ab 100644
--- a/arch/arm/src/cxd56xx/cxd56_emmc.c
+++ b/arch/arm/src/cxd56xx/cxd56_emmc.c
@@ -324,7 +324,7 @@ static struct emmc_dma_desc_s *emmc_setupdma(void *buf, unsigned int nbytes)
   descs[ndescs - 1].ctrl |= EMMC_IDMAC_DES0_LD;
   descs[ndescs - 1].next  = 0;
 
-#ifdef CONFIG_DEBUG_VERBOSE
+#ifdef CONFIG_DEBUG_FS_INFO
   for (i = 0, d = descs; i < ndescs; i++, d++)
     {
       finfo("desc %p = ctrl 0x%x, size 0x%x, addr 0x%x, next 0x%x\n",