diff options
author | Alex Elder <elder@linaro.org> | 2021-03-15 10:01:18 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-03-15 14:51:53 -0700 |
commit | 0f13b5e6bf283a086b6d5b47be1ecf05a341eb9b (patch) | |
tree | 739e511919d08825fc7f1e3bf5ae9af3bf5b6002 /drivers/net/ipa/ipa_table.c | |
parent | 6e3bac3eba448a438840ab8152cb8bbfcb8787b8 (diff) | |
download | linux-0f13b5e6bf283a086b6d5b47be1ecf05a341eb9b.tar.gz |
net: ipa: make ipa_table_hash_support() inline
In review, Alexander Duyck suggested that ipa_table_hash_support()
was trivial enough that it could be implemented as a static inline
function in the header file. But the patch had already been
accepted. Implement his suggestion.
Signed-off-by: Alex Elder <elder@linaro.org>
Reviewed-by: Alexander Duyck <alexanderduyck@fb.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ipa/ipa_table.c')
-rw-r--r-- | drivers/net/ipa/ipa_table.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/net/ipa/ipa_table.c b/drivers/net/ipa/ipa_table.c index baaab3dd0e63..7450e27068f1 100644 --- a/drivers/net/ipa/ipa_table.c +++ b/drivers/net/ipa/ipa_table.c @@ -239,11 +239,6 @@ static void ipa_table_validate_build(void) #endif /* !IPA_VALIDATE */ -bool ipa_table_hash_support(struct ipa *ipa) -{ - return ipa->version != IPA_VERSION_4_2; -} - /* Zero entry count means no table, so just return a 0 address */ static dma_addr_t ipa_table_addr(struct ipa *ipa, bool filter_mask, u16 count) { |