diff options
| author | Alex Elder <elder@linaro.org> | 2021-07-26 12:40:09 -0500 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2021-07-26 22:38:11 +0100 |
| commit | 442d68ebf0927681e9405c3db8e9fafb754cb458 (patch) | |
| tree | 2b125c144090bf3d4e960bc1c1024ac206109e1f /drivers/net/ipa/ipa_cmd.h | |
| parent | 546948bf362541857d4f500705efe08a2fe0bb95 (diff) | |
| download | linux-next-442d68ebf0927681e9405c3db8e9fafb754cb458.tar.gz linux-next-442d68ebf0927681e9405c3db8e9fafb754cb458.zip | |
net: ipa: kill the remaining conditional validation code
There are only a few remaining spots that validate IPA code
conditional on whether a symbol is defined at compile time.
The checks are not expensive, so just build them always.
This completes the removal of all CONFIG_VALIDATE/CONFIG_VALIDATION
IPA code.
Signed-off-by: Alex Elder <elder@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ipa/ipa_cmd.h')
| -rw-r--r-- | drivers/net/ipa/ipa_cmd.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/drivers/net/ipa/ipa_cmd.h b/drivers/net/ipa/ipa_cmd.h index ea723419c826..69cd085d427d 100644 --- a/drivers/net/ipa/ipa_cmd.h +++ b/drivers/net/ipa/ipa_cmd.h @@ -68,8 +68,6 @@ struct ipa_cmd_info { bool ipa_cmd_table_valid(struct ipa *ipa, const struct ipa_mem *mem, bool route); -#ifdef IPA_VALIDATE - /** * ipa_cmd_data_valid() - Validate command-realted configuration is valid * @ipa: - IPA pointer @@ -78,15 +76,6 @@ bool ipa_cmd_table_valid(struct ipa *ipa, const struct ipa_mem *mem, */ bool ipa_cmd_data_valid(struct ipa *ipa); -#else /* !IPA_VALIDATE */ - -static inline bool ipa_cmd_data_valid(struct ipa *ipa) -{ - return true; -} - -#endif /* !IPA_VALIDATE */ - /** * ipa_cmd_pool_init() - initialize command channel pools * @channel: AP->IPA command TX GSI channel pointer |
