From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joe Perches Subject: [PATCH net-next 14/21] llc_if.h: Convert is__ether_addr uses to eth_addr_ Date: Thu, 18 Oct 2012 21:14:58 -0700 Message-ID: <1df2628a6da807939ee0a30c332bf0ec0a596a22.1350618011.git.joe@perches.com> References: Cc: linux-kernel@vger.kernel.org To: netdev@vger.kernel.org Return-path: In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org Convert the old ether_addr tests to eth_addr_. Adds api consistency. Signed-off-by: Joe Perches --- include/net/llc_if.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/net/llc_if.h b/include/net/llc_if.h index b595a00..cce2942 100644 --- a/include/net/llc_if.h +++ b/include/net/llc_if.h @@ -71,12 +71,12 @@ */ static inline int llc_mac_null(const u8 *mac) { - return is_zero_ether_addr(mac); + return eth_addr_zero(mac); } static inline int llc_mac_multicast(const u8 *mac) { - return is_multicast_ether_addr(mac); + return eth_addr_multicast(mac); } /** * llc_mac_match - determines if two mac addresses are the same -- 1.7.8.111.gad25c.dirty