Skip to content

Commit

Permalink
Added compatibility with backported kernels.
Browse files Browse the repository at this point in the history
  • Loading branch information
CGarces committed Jan 20, 2024
1 parent 8668e7c commit de0d75c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/osdep_service_linux.h
Original file line number Diff line number Diff line change
Expand Up @@ -219,10 +219,11 @@ typedef unsigned long systime;

#if (LINUX_VERSION_CODE < KERNEL_VERSION(5, 15, 0))
/* Porting from linux kernel v5.15-rc1 48eab831ae8b9f7002a533fa4235eed63ea1f1a3 */
static inline void eth_hw_addr_set(struct net_device *dev, const u8 *addr)
static inline void rtw_eth_hw_addr_set(struct net_device *dev, const u8 *addr)
{
memcpy(dev->dev_addr, addr, ETH_ALEN);
}
#define eth_hw_addr_set rtw_eth_hw_addr_set
#endif

#if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 22))
Expand Down

0 comments on commit de0d75c

Please sign in to comment.