diff options
author | Vivien Didelot <vivien.didelot@savoirfairelinux.com> | 2017-03-11 16:13:03 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-03-13 02:54:07 -0400 |
commit | 0c68f666d4cc8835ed888ffdd58f76d4d8e2da51 (patch) | |
tree | fa17c539d9d04f1dc5e3748f58b9627bfa682d08 | |
parent | 9dbfb4e1ca45c069bd1156adedfbc95e0c24be28 (diff) |
etherdevice: remove unused eth_addr_greater
eth_addr_greater() was introduced for the mv88e6xxx driver, but is not
used anymore. There is no other user, thus remove this function.
Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | include/linux/etherdevice.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/include/linux/etherdevice.h b/include/linux/etherdevice.h index c62b709b1ce0..2d9f80848d4b 100644 --- a/include/linux/etherdevice.h +++ b/include/linux/etherdevice.h | |||
@@ -447,21 +447,6 @@ static inline void eth_addr_dec(u8 *addr) | |||
447 | } | 447 | } |
448 | 448 | ||
449 | /** | 449 | /** |
450 | * ether_addr_greater - Compare two Ethernet addresses | ||
451 | * @addr1: Pointer to a six-byte array containing the Ethernet address | ||
452 | * @addr2: Pointer other six-byte array containing the Ethernet address | ||
453 | * | ||
454 | * Compare two Ethernet addresses, returns true addr1 is greater than addr2 | ||
455 | */ | ||
456 | static inline bool ether_addr_greater(const u8 *addr1, const u8 *addr2) | ||
457 | { | ||
458 | u64 u1 = ether_addr_to_u64(addr1); | ||
459 | u64 u2 = ether_addr_to_u64(addr2); | ||
460 | |||
461 | return u1 > u2; | ||
462 | } | ||
463 | |||
464 | /** | ||
465 | * is_etherdev_addr - Tell if given Ethernet address belongs to the device. | 450 | * is_etherdev_addr - Tell if given Ethernet address belongs to the device. |
466 | * @dev: Pointer to a device structure | 451 | * @dev: Pointer to a device structure |
467 | * @addr: Pointer to a six-byte array containing the Ethernet address | 452 | * @addr: Pointer to a six-byte array containing the Ethernet address |