Hi,
On Fri, Oct 06, 2006 at 12:29:46PM -0600, Ronald G Minnich wrote:
I like it but what on earth is indent breaking? I don't like the idea of special comments. What's going on?
One example I noticed:
- dev = pci_locate_device_on_bus( - PCI_ID(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8111_ISA), - bus); + dev = + pci_locate_device_on_bus(PCI_ID + (PCI_VENDOR_ID_AMD, + PCI_DEVICE_ID_AMD_8111_ISA), bus);
As PCI_ID is a macro breaking it overîmultiple lines seems to cause trouble (in this case at least).
Uwe.