Fix 8042kbdc.c and pci.c warnings

This commit is contained in:
Couriersud 2008-11-14 20:31:42 +00:00
parent 838a729328
commit 050b0d8cf2
2 changed files with 6 additions and 6 deletions

View File

@ -597,26 +597,26 @@ WRITE8_HANDLER(kbdc8042_8_w)
READ32_HANDLER( kbdc8042_32le_r )
{
return read32le_with_read8_handler(kbdc8042_8_r, space->machine, offset, mem_mask);
return read32le_with_read8_handler(kbdc8042_8_r, space, offset, mem_mask);
}
WRITE32_HANDLER( kbdc8042_32le_w )
{
write32le_with_write8_handler(kbdc8042_8_w, space->machine, offset, data, mem_mask);
write32le_with_write8_handler(kbdc8042_8_w, space, offset, data, mem_mask);
}
READ64_HANDLER( kbdc8042_64be_r )
{
return read64be_with_read8_handler(kbdc8042_8_r, space->machine, offset, mem_mask);
return read64be_with_read8_handler(kbdc8042_8_r, space, offset, mem_mask);
}
WRITE64_HANDLER( kbdc8042_64be_w )
{
write64be_with_write8_handler(kbdc8042_8_w, space->machine, offset, data, mem_mask);
write64be_with_write8_handler(kbdc8042_8_w, space, offset, data, mem_mask);
}

View File

@ -193,5 +193,5 @@ WRITE32_HANDLER(pci_32le_w)
READ64_HANDLER(pci_64be_r) { return read64be_with_32le_handler(pci_32le_r, space->machine, offset, mem_mask); }
WRITE64_HANDLER(pci_64be_w) { write64be_with_32le_handler(pci_32le_w, space->machine, offset, data, mem_mask); }
READ64_HANDLER(pci_64be_r) { return read64be_with_32le_handler(pci_32le_r, space, offset, mem_mask); }
WRITE64_HANDLER(pci_64be_w) { write64be_with_32le_handler(pci_32le_w, space, offset, data, mem_mask); }