From: Liu Shixin <liushixin2@huawei.com> Date: Mon, 14 Sep 2020 04:17:52 +0000 (+0800) Subject: soc: fsl: qman: convert to use be32_add_cpu() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5ed2da99e3fcf3eee32a050fd31eb62d49575533;p=linux.git soc: fsl: qman: convert to use be32_add_cpu() Signed-off-by: Liu Shixin <liushixin2@huawei.com> Signed-off-by: Li Yang <leoyang.li@nxp.com> --- diff --git a/drivers/soc/fsl/qbman/qman_test_api.c b/drivers/soc/fsl/qbman/qman_test_api.c index 2895d062cf513..7066b2f1467cc 100644 --- a/drivers/soc/fsl/qbman/qman_test_api.c +++ b/drivers/soc/fsl/qbman/qman_test_api.c @@ -86,7 +86,7 @@ static void fd_inc(struct qm_fd *fd) len--; qm_fd_set_param(fd, fmt, off, len); - fd->cmd = cpu_to_be32(be32_to_cpu(fd->cmd) + 1); + be32_add_cpu(&fd->cmd, 1); } /* The only part of the 'fd' we can't memcmp() is the ppid */