summaryrefslogtreecommitdiff
path: root/src/clientlx.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/clientlx.c')
-rw-r--r--src/clientlx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/clientlx.c b/src/clientlx.c
index 6b754aa..7291718 100644
--- a/src/clientlx.c
+++ b/src/clientlx.c
@@ -123,7 +123,7 @@ ULONG ClientWriteConfigSpaceByte(LPBOARDHANDLE pBoard, ULONG ulOffset,
ASSERT_HANDLER(pBoard);
- pci_device_cfg_write_u8(pMga->PciInfo, & ucByte, ulOffset);
+ pci_device_cfg_write_u8(pMga->PciInfo, ucByte, ulOffset);
return 0;
}
@@ -151,7 +151,7 @@ ULONG ClientWriteConfigSpaceDword(LPBOARDHANDLE pBoard, ULONG ulOffset,
ASSERT_HANDLER(pBoard);
- pci_device_cfg_write_u32(pMga->PciInfo, (uint32_t *) & ulDword, ulOffset);
+ pci_device_cfg_write_u32(pMga->PciInfo, (uint32_t) ulDword, ulOffset);
return 0;
}