Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 583 → Rev 584

/shark/trunk/drivers/newnet/eepro100.c
106,7 → 106,7
The registers beyond 0x18 only exist on the i82558. */
#define SPEEDO3_TOTAL_SIZE 0x20
 
int speedo_debug = 1;
int speedo_debug = 0;
 
/*
Theory of Operation
477,7 → 477,8
 
u16 pci_command, new_command;
 
printk("Finding Device\n");
if (speedo_debug > 0)
printk("Finding Device\n");
 
if (pci20to26_find_class (PCI_CLASS_NETWORK_ETHERNET << 8, pci_index,
&pci_bus, &pci_device_fn)
489,7 → 490,8
pci20to26_read_config_word(pci_bus, pci_device_fn,
PCI_DEVICE_ID, &device);
 
printk("Device = %x Vendor = %x\n",(int)device,(int)vendor);
if (speedo_debug > 0)
printk("Device = %x Vendor = %x\n",(int)device,(int)vendor);
 
if (vendor != PCI_VENDOR_ID_INTEL)
break;