batman-adv: Use eth_hw_addr_random compat also for kernel 3.3

Message ID 1332934505-22964-1-git-send-email-sven@narfation.org (mailing list archive)
State Accepted, archived
Commit eb9e3fb6e7bc1d27cfe57f6e59ee1100dc9a50cb
Headers

Commit Message

Sven Eckelmann March 28, 2012, 11:35 a.m. UTC
  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

Marek Lindner March 28, 2012, 3:03 p.m. UTC | #1
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
  

Patch

diff --git a/compat.h b/compat.h
index 46de8b0..92379ef 100644
--- a/compat.h
+++ b/compat.h
@@ -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_ */