]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
cxgb4: Remove unused cxgb4_l2t_alloc_switching
authorDr. David Alan Gilbert <linux@treblig.org>
Sun, 13 Oct 2024 20:38:30 +0000 (21:38 +0100)
committerJakub Kicinski <kuba@kernel.org>
Tue, 15 Oct 2024 23:46:28 +0000 (16:46 -0700)
cxgb4_l2t_alloc_switching() has been unused since it was added in
commit f7502659cec8 ("cxgb4: Add API to alloc l2t entry; also update
existing ones")

Remove it.

Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org>
Reviewed-by: Kalesh AP <kalesh-anakkur.purayil@broadcom.com>
Link: https://patch.msgid.link/20241013203831.88051-6-linux@treblig.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/chelsio/cxgb4/l2t.c
drivers/net/ethernet/chelsio/cxgb4/l2t.h

index 1e5f5b1a22a6dedcc00a5b0b3e9af393dceab0d6..c02b4e9c06b231726087e4945306ae09555af871 100644 (file)
@@ -608,25 +608,6 @@ struct l2t_entry *t4_l2t_alloc_switching(struct adapter *adap, u16 vlan,
        return e;
 }
 
-/**
- * cxgb4_l2t_alloc_switching - Allocates an L2T entry for switch filters
- * @dev: net_device pointer
- * @vlan: VLAN Id
- * @port: Associated port
- * @dmac: Destination MAC address to add to L2T
- * Returns pointer to the allocated l2t entry
- *
- * Allocates an L2T entry for use by switching rule of a filter
- */
-struct l2t_entry *cxgb4_l2t_alloc_switching(struct net_device *dev, u16 vlan,
-                                           u8 port, u8 *dmac)
-{
-       struct adapter *adap = netdev2adap(dev);
-
-       return t4_l2t_alloc_switching(adap, vlan, port, dmac);
-}
-EXPORT_SYMBOL(cxgb4_l2t_alloc_switching);
-
 struct l2t_data *t4_init_l2t(unsigned int l2t_start, unsigned int l2t_end)
 {
        unsigned int l2t_size;
index 340fecb28a137b1da3d2a2dd0417b8d7a66eecfa..8aad7e9dee6d52f32b13e47be0ab4fabb6961342 100644 (file)
@@ -115,8 +115,6 @@ struct l2t_entry *cxgb4_l2t_get(struct l2t_data *d, struct neighbour *neigh,
                                unsigned int priority);
 u64 cxgb4_select_ntuple(struct net_device *dev,
                        const struct l2t_entry *l2t);
-struct l2t_entry *cxgb4_l2t_alloc_switching(struct net_device *dev, u16 vlan,
-                                           u8 port, u8 *dmac);
 void t4_l2t_update(struct adapter *adap, struct neighbour *neigh);
 struct l2t_entry *t4_l2t_alloc_switching(struct adapter *adap, u16 vlan,
                                         u8 port, u8 *dmac);