aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/via/vx900/pci_util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/northbridge/via/vx900/pci_util.c')
-rw-r--r--src/northbridge/via/vx900/pci_util.c42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/northbridge/via/vx900/pci_util.c b/src/northbridge/via/vx900/pci_util.c
index 08e2b54c37..afd35a18e8 100644
--- a/src/northbridge/via/vx900/pci_util.c
+++ b/src/northbridge/via/vx900/pci_util.c
@@ -38,45 +38,3 @@ void dump_pci_device(struct device *dev)
printk(BIOS_DEBUG, "\n");
}
}
-
-#ifdef __SIMPLE_DEVICE__
-void pci_mod_config8(pci_devfn_t dev, unsigned int where, uint8_t clr_mask,
- uint8_t set_mask)
-#else
-void pci_mod_config8(struct device *dev, unsigned int where, uint8_t clr_mask,
- uint8_t set_mask)
-#endif
-{
- uint8_t reg8 = pci_read_config8(dev, where);
- reg8 &= ~clr_mask;
- reg8 |= set_mask;
- pci_write_config8(dev, where, reg8);
-}
-
-#ifdef __SIMPLE_DEVICE__
-void pci_mod_config16(pci_devfn_t dev, unsigned int where,
- uint16_t clr_mask, uint16_t set_mask)
-#else
-void pci_mod_config16(struct device *dev, unsigned int where,
- uint16_t clr_mask, uint16_t set_mask)
-#endif
-{
- uint16_t reg16 = pci_read_config16(dev, where);
- reg16 &= ~clr_mask;
- reg16 |= set_mask;
- pci_write_config16(dev, where, reg16);
-}
-
-#ifdef __SIMPLE_DEVICE__
-void pci_mod_config32(pci_devfn_t dev, unsigned int where,
- uint32_t clr_mask, uint32_t set_mask)
-#else
-void pci_mod_config32(struct device *dev, unsigned int where,
- uint32_t clr_mask, uint32_t set_mask)
-#endif
-{
- uint32_t reg32 = pci_read_config32(dev, where);
- reg32 &= ~clr_mask;
- reg32 |= set_mask;
- pci_write_config32(dev, where, reg32);
-}