summaryrefslogtreecommitdiff
path: root/hw/xfree86/int10/helper_exec.c
diff options
context:
space:
mode:
authorIan Romanick <idr@us.ibm.com>2007-01-15 11:38:22 -0800
committerIan Romanick <idr@us.ibm.com>2007-01-15 11:38:22 -0800
commitd8bd0c41de11d12976a5ea9f185b7ac6c7060b71 (patch)
tree20dc40f04ac427352cf92e72c40e9cebe2ddbf7a /hw/xfree86/int10/helper_exec.c
parenta87af8218f97da76433a5192d5e51aca0d5c3ed0 (diff)
Convert to new pci_device_cfg_write_u* interface.
Diffstat (limited to 'hw/xfree86/int10/helper_exec.c')
-rw-r--r--hw/xfree86/int10/helper_exec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/xfree86/int10/helper_exec.c b/hw/xfree86/int10/helper_exec.c
index 9937d65b9..aef24cc35 100644
--- a/hw/xfree86/int10/helper_exec.c
+++ b/hw/xfree86/int10/helper_exec.c
@@ -494,7 +494,7 @@ pciCfg1out(CARD16 addr, CARD32 val)
return 1;
}
if (addr == 0xCFC) {
- pci_device_cfg_write_u32(Int10Current->dev, & val, OFFSET(PciCfg1Addr));
+ pci_device_cfg_write_u32(Int10Current->dev, val, OFFSET(PciCfg1Addr));
return 1;
}
return 0;
@@ -533,7 +533,7 @@ pciCfg1outw(CARD16 addr, CARD16 val)
if ((addr >= 0xCFC) && (addr <= 0xCFF)) {
const unsigned offset = addr - 0xCFC;
- pci_device_cfg_write_u16(Int10Current->dev, & val, OFFSET(PciCfg1Addr) + offset);
+ pci_device_cfg_write_u16(Int10Current->dev, val, OFFSET(PciCfg1Addr) + offset);
return 1;
}
return 0;
@@ -572,7 +572,7 @@ pciCfg1outb(CARD16 addr, CARD8 val)
if ((addr >= 0xCFC) && (addr <= 0xCFF)) {
const unsigned offset = addr - 0xCFC;
- pci_device_cfg_write_u8(Int10Current->dev, & val, OFFSET(PciCfg1Addr) + offset);
+ pci_device_cfg_write_u8(Int10Current->dev, val, OFFSET(PciCfg1Addr) + offset);
return 1;
}
return 0;