summaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/stmicro/stmmac/common.h
diff options
context:
space:
mode:
authorRayagond Kokatanur2012-08-22 23:28:18 +0200
committerDavid S. Miller2012-08-24 19:25:05 +0200
commitbd4242dfe85470b9caecbd049310518f9b9e3f14 (patch)
treebdfd499d3a96a2251f50ba3f1e5ef2b0e2833337 /drivers/net/ethernet/stmicro/stmmac/common.h
parentipv4: take rt_uncached_lock only if needed (diff)
downloadkernel-qcow2-linux-bd4242dfe85470b9caecbd049310518f9b9e3f14.tar.gz
kernel-qcow2-linux-bd4242dfe85470b9caecbd049310518f9b9e3f14.tar.xz
kernel-qcow2-linux-bd4242dfe85470b9caecbd049310518f9b9e3f14.zip
stmmac: add header inclusion protection
This patch adds "#ifndef __<header>_H" for protecting header from double inclusion. Signed-off-by: Rayagond Kokatanur <rayagond@vayavyalabs.com> Hacked-by: Giuseppe Cavallaro <peppe.cavallaro@st.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/stmicro/stmmac/common.h')
-rw-r--r--drivers/net/ethernet/stmicro/stmmac/common.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/net/ethernet/stmicro/stmmac/common.h b/drivers/net/ethernet/stmicro/stmmac/common.h
index e2d083228f3a..719be3912aa9 100644
--- a/drivers/net/ethernet/stmicro/stmmac/common.h
+++ b/drivers/net/ethernet/stmicro/stmmac/common.h
@@ -22,6 +22,9 @@
Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
*******************************************************************************/
+#ifndef __COMMON_H__
+#define __COMMON_H__
+
#include <linux/etherdevice.h>
#include <linux/netdevice.h>
#include <linux/phy.h>
@@ -366,3 +369,5 @@ extern void stmmac_set_mac(void __iomem *ioaddr, bool enable);
extern void dwmac_dma_flush_tx_fifo(void __iomem *ioaddr);
extern const struct stmmac_ring_mode_ops ring_mode_ops;
+
+#endif /* __COMMON_H__ */