aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ipa/ipa_table.h
diff options
context:
space:
mode:
authorAlex Elder <elder@linaro.org>2021-03-28 12:31:11 -0500
committerDavid S. Miller <davem@davemloft.net>2021-03-28 18:12:03 -0700
commit4ea29143ebe6c453f5fddc80ffe4ed046f44aa3a (patch)
treefc26c4ae4139e72f5fd5b3d05f69d28120ab6db5 /drivers/net/ipa/ipa_table.h
parentnet: ipa: DMA addresses are nicely aligned (diff)
downloadlinux-dev-4ea29143ebe6c453f5fddc80ffe4ed046f44aa3a.tar.xz
linux-dev-4ea29143ebe6c453f5fddc80ffe4ed046f44aa3a.zip
net: ipa: kill IPA_TABLE_ENTRY_SIZE
Entries in an IPA route or filter table are 64-bit little-endian addresses, each of which refers to a routing or filtering rule. The format of these table slots are fixed, but IPA_TABLE_ENTRY_SIZE is used to define their size. This symbol doesn't really add value, and I think it unnecessarily obscures what a table entry *is*. So get rid of IPA_TABLE_ENTRY_SIZE, and just use sizeof(__le64) in its place throughout the code. Update the comments in "ipa_table.c" to provide a little better explanation of these table slots. Signed-off-by: Alex Elder <elder@linaro.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ipa/ipa_table.h')
-rw-r--r--drivers/net/ipa/ipa_table.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/net/ipa/ipa_table.h b/drivers/net/ipa/ipa_table.h
index e14108ed62bd..018045b95aad 100644
--- a/drivers/net/ipa/ipa_table.h
+++ b/drivers/net/ipa/ipa_table.h
@@ -10,9 +10,6 @@
struct ipa;
-/* The size of a filter or route table entry */
-#define IPA_TABLE_ENTRY_SIZE sizeof(__le64) /* Holds a physical address */
-
/* The maximum number of filter table entries (IPv4, IPv6; hashed or not) */
#define IPA_FILTER_COUNT_MAX 14