diff options
author | Ioana Ciornei <ioana.ciornei@nxp.com> | 2021-10-14 17:49:22 +0300 |
---|---|---|
committer | Li Yang <leoyang.li@nxp.com> | 2021-10-22 03:38:49 +0300 |
commit | a7ff7dcaf4d2dfbfd901e28ab0101ee9a1b8bf98 (patch) | |
tree | f7b448a3899a174873fa4afa01876f6736f6b472 /drivers/soc/fsl | |
parent | ea41191165fdce7baef9a9ab09523c6d3d0525e1 (diff) | |
download | linux-a7ff7dcaf4d2dfbfd901e28ab0101ee9a1b8bf98.tar.xz |
soc: fsl: dpio: use an explicit NULL instead of 0
Use an explicit NULL pointer when calling qbman_swp_enqueue_multiple()
instead of a plain integer. Without this fix, we get the following
compile time error.
drivers/soc/fsl/dpio/dpio-service.c:466:60: warning: Using plain integer as NULL pointer
Fixes: 9d98809711ae ("soc: fsl: dpio: Adding QMAN multiple enqueue interface")
Signed-off-by: Ioana Ciornei <ioana.ciornei@nxp.com>
Signed-off-by: Li Yang <leoyang.li@nxp.com>
Diffstat (limited to 'drivers/soc/fsl')
-rw-r--r-- | drivers/soc/fsl/dpio/dpio-service.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/fsl/dpio/dpio-service.c b/drivers/soc/fsl/dpio/dpio-service.c index 7351f3030550..23ff027b9986 100644 --- a/drivers/soc/fsl/dpio/dpio-service.c +++ b/drivers/soc/fsl/dpio/dpio-service.c @@ -462,7 +462,7 @@ int dpaa2_io_service_enqueue_multiple_fq(struct dpaa2_io *d, qbman_eq_desc_set_no_orp(&ed, 0); qbman_eq_desc_set_fq(&ed, fqid); - return qbman_swp_enqueue_multiple(d->swp, &ed, fd, 0, nb); + return qbman_swp_enqueue_multiple(d->swp, &ed, fd, NULL, nb); } EXPORT_SYMBOL(dpaa2_io_service_enqueue_multiple_fq); |