cosmetic changes

This commit is contained in:
Stefan Lankes 2014-12-09 22:35:38 +01:00
parent e3042f167a
commit 9ae03d14d5

View file

@ -81,8 +81,7 @@ static uint32_t pci_conf_read(uint32_t bus, uint32_t slot, uint32_t off)
{
uint32_t data = -1;
outportl(PCI_CONF_ADDR_REG,
(0x80000000 | (bus << 16) | (slot << 11) | off));
outportl(PCI_CONF_ADDR_REG, (0x80000000 | (bus << 16) | (slot << 11) | off));
data = inportl(PCI_CONF_DATA_REG);
if ((data == 0xffffffff) && (slot < 0x10)) {