mirror of
https://github.com/Mange/rtl8192eu-linux-driver
synced 2024-11-22 05:25:03 +00:00
Fix 5.18 compilation errors
This commit is contained in:
parent
352330be93
commit
047a8aefc4
@ -780,18 +780,18 @@ join_res:
|
|||||||
#define PORT_FMT "%u"
|
#define PORT_FMT "%u"
|
||||||
#define PORT_ARG(x) ntohs(*((u16 *)(x)))
|
#define PORT_ARG(x) ntohs(*((u16 *)(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]);
|
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) && \
|
return ((addr[0] == 0xff) && (addr[1] == 0xff) && (addr[2] == 0xff) && \
|
||||||
(addr[3] == 0xff) && (addr[4] == 0xff) && (addr[5] == 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) && \
|
return ((addr[0] == 0x00) && (addr[1] == 0x00) && (addr[2] == 0x00) && \
|
||||||
(addr[3] == 0x00) && (addr[4] == 0x00) && (addr[5] == 0x00));
|
(addr[3] == 0x00) && (addr[4] == 0x00) && (addr[5] == 0x00));
|
||||||
|
Loading…
Reference in New Issue
Block a user