mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
soc/qman: Fix struct qm_fqd set accessor for context_a
context_a.hi is 32bit Signed-off-by: Claudiu Manoil <claudiu.manoil@nxp.com> Signed-off-by: Scott Wood <oss@buserror.net>
This commit is contained in:
parent
333e72cf47
commit
9f3670e8f6
@ -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));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user