net: sun: cassini: Remove unused inline functions
authorYueHaibing <yuehaibing@huawei.com>
Tue, 5 May 2020 08:33:12 +0000 (16:33 +0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 5 May 2020 19:07:43 +0000 (12:07 -0700)
There's no callers in-tree anymore.

Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/sun/cassini.c

index 3ee6ab104cb98fda886cbeff2376f2dbe2e19986..e6e25960da4ffd2a62d1ee9bb965a59bb610341e 100644 (file)
@@ -237,12 +237,6 @@ static inline void cas_lock_tx(struct cas *cp)
                spin_lock_nested(&cp->tx_lock[i], i);
 }
 
-static inline void cas_lock_all(struct cas *cp)
-{
-       spin_lock_irq(&cp->lock);
-       cas_lock_tx(cp);
-}
-
 /* WTZ: QA was finding deadlock problems with the previous
  * versions after long test runs with multiple cards per machine.
  * See if replacing cas_lock_all with safer versions helps. The
@@ -266,12 +260,6 @@ static inline void cas_unlock_tx(struct cas *cp)
                spin_unlock(&cp->tx_lock[i - 1]);
 }
 
-static inline void cas_unlock_all(struct cas *cp)
-{
-       cas_unlock_tx(cp);
-       spin_unlock_irq(&cp->lock);
-}
-
 #define cas_unlock_all_restore(cp, flags) \
 do { \
        struct cas *xxxcp = (cp); \