[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20170421120018.22232-1-horia.geanta@nxp.com>
Date: Fri, 21 Apr 2017 15:00:18 +0300
From: Horia Geantă <horia.geanta@....com>
To: <gregkh@...uxfoundation.org>, Roy Pledge <roy.pledge@....com>
CC: <devel@...verdev.osuosl.org>, <linux-kernel@...r.kernel.org>,
Haiying Wang <haiying.wang@....com>,
Ioana Radulescu <ruxandra.radulescu@....com>,
Stuart Yoder <stuyoder@...il.com>
Subject: [PATCH] bus: fsl-mc: dpio: fix alter FQ state command
When checking the response verb, the valid bit should be masked out,
since its value flips depending on what Response Register
(RR0 /RR1) it's been read from.
Fixes: 321eecb06bfb ("bus: fsl-mc: dpio: add QBMan portal APIs for DPAA2")
Signed-off-by: Horia Geantă <horia.geanta@....com>
---
drivers/staging/fsl-mc/bus/dpio/qbman-portal.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/fsl-mc/bus/dpio/qbman-portal.c b/drivers/staging/fsl-mc/bus/dpio/qbman-portal.c
index 2a3ea29d9b43..5d020fb98c66 100644
--- a/drivers/staging/fsl-mc/bus/dpio/qbman-portal.c
+++ b/drivers/staging/fsl-mc/bus/dpio/qbman-portal.c
@@ -963,7 +963,7 @@ int qbman_swp_alt_fq_state(struct qbman_swp *s, u32 fqid,
}
/* Decode the outcome */
- WARN_ON(r->verb != alt_fq_verb);
+ WARN_ON((r->verb & 0x7f) != alt_fq_verb);
/* Determine success or failure */
if (unlikely(r->rslt != QBMAN_MC_RSLT_OK)) {
--
2.12.0.264.gd6db3f216544
Powered by blists - more mailing lists