Index: chipset_enable.c |
diff --git a/chipset_enable.c b/chipset_enable.c |
index d8efd0bfc3e464a7c86ae5fdc991c850848354b4..5edfd04fc36a608f3629041afc7fc7a82b1fca48 100644 |
--- a/chipset_enable.c |
+++ b/chipset_enable.c |
@@ -447,11 +447,11 @@ static int enable_flash_ich_dc_spi(struct pci_dev *dev, const char *name, |
if (target_bus == CHIP_BUSTYPE_LPC) { |
msg_pdbg("Setting BBS to LPC\n"); |
gcs = (gcs & ~0xc00) | (0x3 << 10); |
- mmio_writel(gcs, rcrb + 0x3410); |
+ rmmio_writel(gcs, rcrb + 0x3410); |
} else if (target_bus == CHIP_BUSTYPE_SPI) { |
msg_pdbg("Setting BBS to SPI\n"); |
gcs = (gcs & ~0xc00) | (0x1 << 10); |
- mmio_writel(gcs, rcrb + 0x3410); |
+ rmmio_writel(gcs, rcrb + 0x3410); |
} |
msg_pdbg("GCS = 0x%x: ", gcs); |