patch-2.1.36 linux/drivers/net/cs89x0.c
Next file: linux/drivers/net/de4x5.c
Previous file: linux/drivers/net/bpqether.c
Back to the patch index
Back to the overall index
- Lines: 81
- Date:
Tue Apr 22 22:42:48 1997
- Orig file:
v2.1.35/linux/drivers/net/cs89x0.c
- Orig date:
Mon Apr 7 11:35:29 1997
diff -u --recursive --new-file v2.1.35/linux/drivers/net/cs89x0.c linux/drivers/net/cs89x0.c
@@ -78,6 +78,7 @@
#include <asm/bitops.h>
#include <asm/io.h>
#include <linux/errno.h>
+#include <linux/init.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
@@ -86,7 +87,7 @@
/* First, a few definitions that the brave might change. */
/* A zero-terminated list of I/O addresses to be probed. */
-static unsigned int netcard_portlist[] =
+static unsigned int netcard_portlist[] __initdata =
{ 0x300, 0x320, 0x340, 0x200, 0x220, 0x240, 0x260, 0x280, 0x2a0, 0x2c0, 0x2e0, 0};
static unsigned int net_debug = NET_DEBUG;
@@ -145,8 +146,8 @@
struct netdev_entry netcard_drv =
{"netcard", cs89x0_probe1, NETCARD_IO_EXTENT, netcard_portlist};
#else
-int
-cs89x0_probe(struct device *dev)
+__initfunc(int
+cs89x0_probe(struct device *dev))
{
int i;
int base_addr = dev ? dev->base_addr : 0;
@@ -195,8 +196,8 @@
outw(value, dev->base_addr + portno);
}
-static int
-wait_eeprom_ready(struct device *dev)
+__initfunc(static int
+wait_eeprom_ready(struct device *dev))
{
int timeout = jiffies;
/* check to see if the EEPROM is ready, a timeout is used -
@@ -208,8 +209,8 @@
return 0;
}
-int
-get_eeprom_data(struct device *dev, int off, int len, int *buffer)
+__initfunc(static int
+get_eeprom_data(struct device *dev, int off, int len, int *buffer))
{
int i;
@@ -226,8 +227,8 @@
return 0;
}
-int
-get_eeprom_cksum(int off, int len, int *buffer)
+__initfunc(static int
+get_eeprom_cksum(int off, int len, int *buffer))
{
int i, cksum;
@@ -244,7 +245,7 @@
probes on the ISA bus. A good device probes avoids doing writes, and
verifies that the correct device exists and functions. */
-static int cs89x0_probe1(struct device *dev, int ioaddr)
+__initfunc(static int cs89x0_probe1(struct device *dev, int ioaddr))
{
struct net_local *lp;
static unsigned version_printed = 0;
@@ -392,8 +393,8 @@
-void
-reset_chip(struct device *dev)
+__initfunc(void
+reset_chip(struct device *dev))
{
struct net_local *lp = (struct net_local *)dev->priv;
int ioaddr = dev->base_addr;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov