From: Claudiu Manoil Date: Wed, 16 Nov 2016 14:40:18 +0000 (+0200) Subject: soc/qman: Fix struct qm_fqd set accessor for context_a X-Git-Tag: v4.10-rc1~75^2^2~25 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=9f3670e8f6df6557fefe3ae0e626189c8c30c74c;p=karo-tx-linux.git soc/qman: Fix struct qm_fqd set accessor for context_a context_a.hi is 32bit Signed-off-by: Claudiu Manoil Signed-off-by: Scott Wood --- diff --git a/include/soc/fsl/qman.h b/include/soc/fsl/qman.h index 37f3eb001a16..1405810e4050 100644 --- a/include/soc/fsl/qman.h +++ b/include/soc/fsl/qman.h @@ -411,7 +411,7 @@ static inline void qm_fqd_stashing_set64(struct qm_fqd *fqd, u64 addr) static inline void qm_fqd_context_a_set64(struct qm_fqd *fqd, u64 addr) { - fqd->context_a.hi = cpu_to_be16(upper_32_bits(addr)); + fqd->context_a.hi = cpu_to_be32(upper_32_bits(addr)); fqd->context_a.lo = cpu_to_be32(lower_32_bits(addr)); }