From 76146e85847beb2427b1d4958fa275822f2b04ab Mon Sep 17 00:00:00 2001 From: Larry Finger Date: Thu, 7 Apr 2022 10:53:17 -0500 Subject: [PATCH] rtl8723ds: Fix build errors with kernel 5.18 Signed-off-by: Larry Finger --- include/ieee80211.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/ieee80211.h b/include/ieee80211.h index 48963f5..d13da8f 100644 --- a/include/ieee80211.h +++ b/include/ieee80211.h @@ -1290,18 +1290,18 @@ enum ieee80211_state { #define PORT_FMT "%u" #define PORT_ARG(x) ntohs(*((__be16 *)(x))) -extern __inline int is_multicast_mac_addr(const u8 *addr) +static inline int is_multicast_mac_addr(const u8 *addr) { return (addr[0] != 0xff) && (0x01 & addr[0]); } -extern __inline int is_broadcast_mac_addr(const u8 *addr) +static inline int is_broadcast_mac_addr(const u8 *addr) { return ((addr[0] == 0xff) && (addr[1] == 0xff) && (addr[2] == 0xff) && \ (addr[3] == 0xff) && (addr[4] == 0xff) && (addr[5] == 0xff)); } -extern __inline int is_zero_mac_addr(const u8 *addr) +static inline int is_zero_mac_addr(const u8 *addr) { return ((addr[0] == 0x00) && (addr[1] == 0x00) && (addr[2] == 0x00) && \ (addr[3] == 0x00) && (addr[4] == 0x00) && (addr[5] == 0x00));