Skip to content
  • Ley Foon Tan's avatar
    spi: cadence_qspi: Fix compilation warning · 9bd39dd8
    Ley Foon Tan authored and Marek Vasut's avatar Marek Vasut committed
    
    
    Use "%zu" for size_t data type.
    
    Compilation warning as below:
    
    In file included from include/linux/bug.h:7:0,
                     from include/common.h:26,
                     from drivers/spi/cadence_qspi.c:8:
    drivers/spi/cadence_qspi.c: In function ‘cadence_spi_xfer’:
    drivers/spi/cadence_qspi.c:211:8: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘size_t {aka long unsigned int}’ [-Wformat=]
      debug("%s: len=%d [bytes]\n", __func__, data_bytes);
            ^
    include/linux/printk.h:37:21: note: in definition of macro ‘pr_fmt’
     #define pr_fmt(fmt) fmt
                         ^~~
    include/log.h:142:2: note: in expansion of macro ‘debug_cond’
      debug_cond(_DEBUG, fmt, ##args)
      ^~~~~~~~~~
    drivers/spi/cadence_qspi.c:211:2: note: in expansion of macro ‘debug’
      debug("%s: len=%d [bytes]\n", __func__, data_bytes);
    
    Signed-off-by: default avatarLey Foon Tan <ley.foon.tan@intel.com>
    Acked-by: default avatarMarek Vasut <marex@denx.de>
    9bd39dd8