I found my tulip driver was complaining about not being able to enable
the device. Turns out this was the problem:
int
pci_enable_device(struct pci_dev *dev)
{
- pci_enable_device_bars(dev, 0x3F);
+ return pci_enable_device_bars(dev, 0x3F);
}
/**
I guess nobody else checks their error returns (or it just happened to
always return 0).
J
[ sorry about the resend; forgot to turn off HTML ]
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/