drivers/net/arlan.c | 40 ++++++++++++++++++++--------------------
1 files changed, 20 insertions(+), 20 deletions(-)
diff -puN drivers/net/arlan.c~arlan-fix drivers/net/arlan.c
--- 25/drivers/net/arlan.c~arlan-fix Tue Feb 11 15:03:45 2003
+++ 25-akpm/drivers/net/arlan.c Tue Feb 11 15:07:08 2003
@@ -1124,24 +1124,6 @@ static int __init arlan_probe_everywhere
return -ENODEV;
}
-static int __init arlan_find_devices(void)
-{
- int m;
- int found = 0;
-
- ARLAN_DEBUG_ENTRY("arlan_find_devices");
- if (mem != 0 && numDevices == 1) /* Check a single specified location. */
- return 1;
- for (m =(int) phys_to_virt(0xc0000); m <=(int) phys_to_virt(0xDE000); m += 0x2000)
- {
- if (arlan_check_fingerprint(m) == 0)
- found++;
- }
- ARLAN_DEBUG_EXIT("arlan_find_devices");
-
- return found;
-}
-
static int arlan_change_mtu(struct net_device *dev, int new_mtu)
{
@@ -1199,7 +1181,7 @@ static int __init
return 0;
}
ap = dev->priv;
- ap->config = dev->priv + sizeof(struct arlan_private);
+ ap->conf = dev->priv + sizeof(struct arlan_private);
ap->init_etherdev_alloc = 1;
} else {
dev = devs;
@@ -1209,7 +1191,7 @@ static int __init
return 0;
}
ap = dev->priv;
- ap->config = dev->priv + sizeof(struct arlan_private);
+ ap->conf = dev->priv + sizeof(struct arlan_private);
memset(ap, 0, sizeof(*ap));
}
@@ -2007,6 +1989,24 @@ int __init arlan_probe(struct net_device
#ifdef MODULE
+static int __init arlan_find_devices(void)
+{
+ int m;
+ int found = 0;
+
+ ARLAN_DEBUG_ENTRY("arlan_find_devices");
+ if (mem != 0 && numDevices == 1) /* Check a single specified location. */
+ return 1;
+ for (m =(int) phys_to_virt(0xc0000); m <=(int) phys_to_virt(0xDE000); m += 0x2000)
+ {
+ if (arlan_check_fingerprint(m) == 0)
+ found++;
+ }
+ ARLAN_DEBUG_EXIT("arlan_find_devices");
+
+ return found;
+}
+
int init_module(void)
{
int i = 0;
_
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/