On Wed, Feb 18, 2009 at 10:30:38PM -0500, Kevin O'Connor wrote:
> You could change the pciforeach macro from:
>
> for (MAX=0x0100, BDF=pci_next(0, &MAX) \
>
> to:
>
> for (MAX=0x4000, BDF=pci_next(0, &MAX) \
that should read:
for (MAX=0x4100, BDF=pci_next(0, &MAX) \
-Kevin