diff options
author | Alex Elder <elder@linaro.org> | 2021-03-20 16:57:06 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-03-21 02:56:18 +0100 |
commit | 1690d8a75d873bf3c45ddce319f4902956d84bb0 (patch) | |
tree | 7d97d43f224e8f6a9b6ae61f44498bdd5b42752a /drivers/net/ipa/ipa_reg.h | |
parent | net: ipa: split sequencer type in two (diff) | |
download | linux-1690d8a75d873bf3c45ddce319f4902956d84bb0.tar.xz linux-1690d8a75d873bf3c45ddce319f4902956d84bb0.zip |
net: ipa: sequencer type is for TX endpoints only
We only program the sequencer type for TX endpoints. So move the
definition of the sequencer type fields into the TX-specific portion
of the endpoint configuration data. There's no need to maintain
this in the IPA structure; we can extract it from the configuration
data it points to in the one spot it's needed.
We previously specified the sequencer type for RX endpoints with
INVALID values. These are no longer needed, so get rid of them.
Signed-off-by: Alex Elder <elder@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ipa/ipa_reg.h')
-rw-r--r-- | drivers/net/ipa/ipa_reg.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/net/ipa/ipa_reg.h b/drivers/net/ipa/ipa_reg.h index a7ea11a5d225..36fe746575f6 100644 --- a/drivers/net/ipa/ipa_reg.h +++ b/drivers/net/ipa/ipa_reg.h @@ -602,7 +602,6 @@ enum ipa_seq_type { IPA_SEQ_1_PASS_SKIP_LAST_UC = 0x06, IPA_SEQ_2_PASS = 0x0a, IPA_SEQ_3_PASS_SKIP_LAST_UC = 0x0c, - IPA_SEQ_INVALID = 0x0c, }; /** @@ -615,7 +614,6 @@ enum ipa_seq_type { */ enum ipa_seq_rep_type { IPA_SEQ_REP_DMA_PARSER = 0x08, - IPA_SEQ_REP_INVALID = 0x0c, }; #define IPA_REG_ENDP_STATUS_N_OFFSET(ep) \ |