7f04c962e5da02ce304cd72b9c114e8bd24c57ff
[cascardo/ovs.git] / datapath / linux / compat / include / linux / etherdevice.h
1 #ifndef __LINUX_ETHERDEVICE_WRAPPER_H
2 #define __LINUX_ETHERDEVICE_WRAPPER_H 1
3
4 #include <linux/version.h>
5 #include_next <linux/etherdevice.h>
6
7 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36)
8 static inline void eth_hw_addr_random(struct net_device *dev)
9 {
10         random_ether_addr(dev->dev_addr);
11 }
12 #elif LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0)
13 static inline void eth_hw_addr_random(struct net_device *dev)
14 {
15         dev_hw_addr_random(dev, dev->dev_addr);
16 }
17 #endif
18
19 #endif