diff options
author | Alex Elder <elder@linaro.org> | 2020-06-30 16:33:04 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-07-02 01:30:34 +0300 |
commit | 547c8788549460149f3b9fbacdc6a7f8ccecc27f (patch) | |
tree | 44f571d3f8cad08a11d006d21c0ec1c3949fc65b /drivers/net/ipa | |
parent | 8b97bcb7bb2629e0840c2bebdfff050f890caac9 (diff) | |
download | linux-547c8788549460149f3b9fbacdc6a7f8ccecc27f.tar.xz |
net: ipa: HOL_BLOCK_EN_FMASK is a 1-bit mask
The convention throughout the IPA driver is to directly use
single-bit field mask values, rather than using (for example)
u32_encode_bits() to set or clear them.
Fix the one place that doesn't follow that convention, which sets
HOL_BLOCK_EN_FMASK in ipa_endpoint_init_hol_block_enable().
Signed-off-by: Alex Elder <elder@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ipa')
-rw-r--r-- | drivers/net/ipa/ipa_endpoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ipa/ipa_endpoint.c b/drivers/net/ipa/ipa_endpoint.c index eab8409a8be9..a7b5a6407e8f 100644 --- a/drivers/net/ipa/ipa_endpoint.c +++ b/drivers/net/ipa/ipa_endpoint.c @@ -674,7 +674,7 @@ ipa_endpoint_init_hol_block_enable(struct ipa_endpoint *endpoint, bool enable) u32 offset; u32 val; - val = u32_encode_bits(enable ? 1 : 0, HOL_BLOCK_EN_FMASK); + val = enable ? HOL_BLOCK_EN_FMASK : 0; offset = IPA_REG_ENDP_INIT_HOL_BLOCK_EN_N_OFFSET(endpoint_id); iowrite32(val, endpoint->ipa->reg_virt + offset); } |