[PATCH] pcnet32: Fix Section mismatch error

Fix Section mismatch error. Tested ia32 and ppc64.

Signed-off-by: Don Fry <brazilnut@us.ibm.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>

authored by Don Fry and committed by Jeff Garzik dcaf9769 0c639b31

+2 -3
+2 -3
drivers/net/pcnet32.c
··· 277 277 u32 phymask; 278 278 }; 279 279 280 - static void pcnet32_probe_vlbus(void); 281 280 static int pcnet32_probe_pci(struct pci_dev *, const struct pci_device_id *); 282 281 static int pcnet32_probe1(unsigned long, int, struct pci_dev *); 283 282 static int pcnet32_open(struct net_device *); ··· 951 952 /* only probes for non-PCI devices, the rest are handled by 952 953 * pci_register_driver via pcnet32_probe_pci */ 953 954 954 - static void __devinit pcnet32_probe_vlbus(void) 955 + static void __devinit pcnet32_probe_vlbus(unsigned int *pcnet32_portlist) 955 956 { 956 957 unsigned int *port, ioaddr; 957 958 ··· 2729 2730 2730 2731 /* should we find any remaining VLbus devices ? */ 2731 2732 if (pcnet32vlb) 2732 - pcnet32_probe_vlbus(); 2733 + pcnet32_probe_vlbus(pcnet32_portlist); 2733 2734 2734 2735 if (cards_found && (pcnet32_debug & NETIF_MSG_PROBE)) 2735 2736 printk(KERN_INFO PFX "%d cards_found.\n", cards_found);