diff options
Diffstat (limited to 'src/southbridge/intel/lynxpoint')
-rw-r--r-- | src/southbridge/intel/lynxpoint/smbus.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/southbridge/intel/lynxpoint/smbus.c b/src/southbridge/intel/lynxpoint/smbus.c index 32c9c14e40..d55aa6e3d0 100644 --- a/src/southbridge/intel/lynxpoint/smbus.c +++ b/src/southbridge/intel/lynxpoint/smbus.c @@ -13,13 +13,9 @@ static void pch_smbus_init(struct device *dev) { struct resource *res; - u16 reg16; /* Enable clock gating */ - /* FIXME: Using 32-bit ops with a 16-bit variable is a bug! These should be 16-bit! */ - reg16 = pci_read_config32(dev, 0x80); - reg16 &= ~((1 << 8) | (1 << 10) | (1 << 12) | (1 << 14)); - pci_write_config32(dev, 0x80, reg16); + pci_and_config16(dev, 0x80, ~((1 << 8) | (1 << 10) | (1 << 12) | (1 << 14))); /* Set Receive Slave Address */ res = find_resource(dev, PCI_BASE_ADDRESS_4); |