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 2020/11/28 05:39:00 UTC

[incubator-nuttx] 07/24: arch/arm/src/nrf52/nrf52_spi.c: Fix syslog formats

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 080879ffefc750e417d4e7632f1a5f0cbc188a69
Author: YAMAMOTO Takashi <ya...@midokura.com>
AuthorDate: Sat Nov 28 09:30:29 2020 +0900

    arch/arm/src/nrf52/nrf52_spi.c: Fix syslog formats
---
 arch/arm/src/nrf52/nrf52_spi.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/arch/arm/src/nrf52/nrf52_spi.c b/arch/arm/src/nrf52/nrf52_spi.c
index 57f836b..84eee94 100644
--- a/arch/arm/src/nrf52/nrf52_spi.c
+++ b/arch/arm/src/nrf52/nrf52_spi.c
@@ -26,6 +26,7 @@
 
 #include <errno.h>
 #include <debug.h>
+#include <inttypes.h>
 
 #include <nuttx/irq.h>
 #include <nuttx/arch.h>
@@ -771,7 +772,7 @@ static uint32_t nrf52_spi_setfrequency(FAR struct spi_dev_s *dev,
 
       default:
         {
-          spierr("Frequency unsupported %d\n", frequency);
+          spierr("Frequency unsupported %" PRId32 "\n", frequency);
           goto errout;
         }
     }
@@ -784,7 +785,7 @@ static uint32_t nrf52_spi_setfrequency(FAR struct spi_dev_s *dev,
 
   priv->frequency = frequency;
 
-  spiinfo("Frequency %d\n", frequency);
+  spiinfo("Frequency %" PRId32 "\n", frequency);
 
 errout:
   return priv->frequency;
@@ -1153,7 +1154,7 @@ static void nrf52_spi_exchange(FAR struct spi_dev_s *dev,
       if (nrf52_spi_getreg(priv, NRF52_SPIM_TXDAMOUNT_OFFSET) !=
           transfer_size)
         {
-          spierr("Incomplete transfer wrote %d expected %d\n",
+          spierr("Incomplete transfer wrote %" PRId32 " expected %d\n",
                  regval, nwords);
         }