batman-adv: Use eth_hw_addr_random compat also for kernel 3.3
Commit Message
The changes for eth_hw_addr_random were not merged in linux 3.3. Therefore, the
compat layer has to provide it.
Signed-off-by: Sven Eckelmann <sven@narfation.org>
---
compat.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Comments
On Wednesday, March 28, 2012 14:35:05 Sven Eckelmann wrote:
> The changes for eth_hw_addr_random were not merged in linux 3.3. Therefore,
> the compat layer has to provide it.
Applied in revision 6b49cab.
Thanks,
Marek
@@ -132,13 +132,13 @@ void free_rcu_backbone_gw(struct rcu_head *rcu);
#endif /* < KERNEL_VERSION(3, 0, 0) */
-#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 3, 0)
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 4, 0)
static inline void eth_hw_addr_random(struct net_device *dev)
{
random_ether_addr(dev->dev_addr);
}
-#endif /* < KERNEL_VERSION(3, 0, 0) */
+#endif /* < KERNEL_VERSION(3, 4, 0) */
#endif /* _NET_BATMAN_ADV_COMPAT_H_ */