diff options
author | Ian Romanick <idr@us.ibm.com> | 2007-01-15 11:42:52 -0800 |
---|---|---|
committer | Ian Romanick <idr@us.ibm.com> | 2007-01-15 11:42:52 -0800 |
commit | 916d41bcf99bbf666bf634edb1c72b90d9b16ea0 (patch) | |
tree | 867f459ab8429aca63cfafbadabefa1178179f9d | |
parent | b26bfefb7ea107be3949daea0f6beca6d80c09d4 (diff) |
Convert to new pci_device_cfg_write_u* interface.
-rw-r--r-- | src/clientlx.c | 4 |
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; } |