aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/fec.c
diff options
context:
space:
mode:
authorSebastian Siewior <bigeasy@linutronix.de>2008-05-01 00:04:02 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2008-05-01 11:08:36 -0400
commitc1d9615680c3f43a305b1f66dff0f933d5079273 (patch)
treee0ea3a2469c9c03f35a6467c18510730e9754a41 /drivers/net/fec.c
parent398ec922b9cd5fdec26d2ca75b9389bed2432557 (diff)
m68knommu: kill warnings in FEC driver
linux-2.6-mk68/drivers/net/fec.c: In function 'fec_enet_module_init': linux-2.6-mk68/drivers/net/fec.c:2627: warning: unused variable 'j' linux-2.6-mk68/drivers/net/fec.c: At top level: linux-2.6-mk68/drivers/net/fec.c:2136: warning: 'mii_link_interrupt' defined but not used Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de> Signed-off-by: Greg Ungerer <gerg@uclinux.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/net/fec.c')
-rw-r--r--drivers/net/fec.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/drivers/net/fec.c b/drivers/net/fec.c
index ba6db36c12a3..5f9c2c1a9d40 100644
--- a/drivers/net/fec.c
+++ b/drivers/net/fec.c
@@ -67,6 +67,10 @@
67#define FEC_MAX_PORTS 1 67#define FEC_MAX_PORTS 1
68#endif 68#endif
69 69
70#if defined(CONFIG_FADS) || defined(CONFIG_RPXCLASSIC) || defined(CONFIG_M5272)
71#define HAVE_mii_link_interrupt
72#endif
73
70/* 74/*
71 * Define the fixed address of the FEC hardware. 75 * Define the fixed address of the FEC hardware.
72 */ 76 */
@@ -1222,7 +1226,7 @@ static phy_info_t const * const phy_info[] = {
1222}; 1226};
1223 1227
1224/* ------------------------------------------------------------------------- */ 1228/* ------------------------------------------------------------------------- */
1225#if !defined(CONFIG_M532x) 1229#ifdef HAVE_mii_link_interrupt
1226#ifdef CONFIG_RPXCLASSIC 1230#ifdef CONFIG_RPXCLASSIC
1227static void 1231static void
1228mii_link_interrupt(void *dev_id); 1232mii_link_interrupt(void *dev_id);
@@ -2096,6 +2100,7 @@ mii_discover_phy(uint mii_reg, struct net_device *dev)
2096 2100
2097/* This interrupt occurs when the PHY detects a link change. 2101/* This interrupt occurs when the PHY detects a link change.
2098*/ 2102*/
2103#ifdef HAVE_mii_link_interrupt
2099#ifdef CONFIG_RPXCLASSIC 2104#ifdef CONFIG_RPXCLASSIC
2100static void 2105static void
2101mii_link_interrupt(void *dev_id) 2106mii_link_interrupt(void *dev_id)
@@ -2118,6 +2123,7 @@ mii_link_interrupt(int irq, void * dev_id)
2118 2123
2119 return IRQ_HANDLED; 2124 return IRQ_HANDLED;
2120} 2125}
2126#endif
2121 2127
2122static int 2128static int
2123fec_enet_open(struct net_device *dev) 2129fec_enet_open(struct net_device *dev)
@@ -2596,7 +2602,7 @@ fec_stop(struct net_device *dev)
2596static int __init fec_enet_module_init(void) 2602static int __init fec_enet_module_init(void)
2597{ 2603{
2598 struct net_device *dev; 2604 struct net_device *dev;
2599 int i, j, err; 2605 int i, err;
2600 DECLARE_MAC_BUF(mac); 2606 DECLARE_MAC_BUF(mac);
2601 2607
2602 printk("FEC ENET Version 0.2\n"); 2608 printk("FEC ENET Version 0.2\n");