From bd9ae7cc7073cb17d51255c1b3b59def5843b170 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Tue, 12 Apr 2005 23:24:39 +0000 Subject: Automatically updated using perl -pi -0777 -e 's/_probe\s*\(\s*struct dev \*dev,\s*struct pci_device \*(\w+?)\s*\)\s*{(\s*)struct nic \*nic.*?$/_probe ( struct dev *dev ) {\n${2}struct nic *nic = nic_device ( dev );\n${2}struct pci_device *$1 = pci_device ( dev );/ms' *.c --- src/drivers/net/3c90x.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/drivers/net/3c90x.c') diff --git a/src/drivers/net/3c90x.c b/src/drivers/net/3c90x.c index 7919c9e5..1b100889 100644 --- a/src/drivers/net/3c90x.c +++ b/src/drivers/net/3c90x.c @@ -688,9 +688,11 @@ static void a3c90x_irq(struct nic *nic __unused, irq_action_t action __unused) *** initialization. If this routine is called, the pci functions did find the *** card. We just have to init it here. ***/ -static int a3c90x_probe(struct dev *dev, struct pci_device *pci) -{ - struct nic *nic = (struct nic *)dev; +static int a3c90x_probe ( struct dev *dev ) { + + struct nic *nic = nic_device ( dev ); + + struct pci_device *pci = pci_device ( dev ); int i, c; unsigned short eeprom[0x21]; unsigned int cfg; -- cgit v1.2.3-55-g7522