Remove first forgotten argument from pci_write_config_*.

This commit is contained in:
guillemj
2006-12-03 07:30:26 +00:00
parent b92f14b42c
commit 3a78ad5818

View File

@@ -491,7 +491,7 @@ static int doQueryUpdate(pioData *desc)
}
retval = (retval & ~mask) | preval;
pci_write_config_dword(cards[desc->device].bus, cards[desc->device].dev, desc->port, retval);
pci_write_config_dword(cards[desc->device].dev, desc->port, retval);
return 0;
}