mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-07 23:11:27 +00:00
net: ipa: fix two symbol names
All field mask symbols are defined with a "_FMASK" suffix, but EOT_COAL_GRANULARITY and DRBIP_ACL_ENABLE are defined without one. Fix that. Signed-off-by: Alex Elder <elder@linaro.org> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
a14d593724
commit
dae4af6bf2
1 changed files with 2 additions and 2 deletions
|
@ -254,7 +254,7 @@ static inline u32 proc_cntxt_base_addr_encoded(enum ipa_version version,
|
|||
/* The next register is not present for IPA v4.5+ */
|
||||
#define IPA_REG_COUNTER_CFG_OFFSET 0x000001f0
|
||||
/* The next field is not present for IPA v3.5+ */
|
||||
#define EOT_COAL_GRANULARITY GENMASK(3, 0)
|
||||
#define EOT_COAL_GRANULARITY_FMASK GENMASK(3, 0)
|
||||
#define AGGR_GRANULARITY_FMASK GENMASK(8, 4)
|
||||
|
||||
/* The next register is present for IPA v3.5+ */
|
||||
|
@ -470,7 +470,7 @@ static inline u32 ipa_metadata_offset_encoded(enum ipa_version version,
|
|||
/* The next field is not present for IPA v4.5+ */
|
||||
#define HDR_FTCH_DISABLE_FMASK GENMASK(30, 30)
|
||||
/* The next field is present for IPA v4.9+ */
|
||||
#define DRBIP_ACL_ENABLE GENMASK(30, 30)
|
||||
#define DRBIP_ACL_ENABLE_FMASK GENMASK(30, 30)
|
||||
|
||||
/** enum ipa_mode - ENDP_INIT_MODE register MODE field value */
|
||||
enum ipa_mode {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue