summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/pxa255.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/pxa255.cpp')
-rw-r--r--src/devices/machine/pxa255.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/pxa255.cpp b/src/devices/machine/pxa255.cpp
index e8710f7d891..7ab7457f757 100644
--- a/src/devices/machine/pxa255.cpp
+++ b/src/devices/machine/pxa255.cpp
@@ -755,7 +755,7 @@ void pxa255_periphs_device::intc_w(offs_t offset, uint32_t data, uint32_t mem_ma
*/
-uint32_t pxa255_periphs_device::gpio_r(offs_t offset, uint32_t mem_mask)
+void pxa255_periphs_device::gpio_bit_w(offs_t offset, uint8_t data, uint8_t mem_mask)
{
const uint32_t val = (data != 0 ? 1 : 0);
LOGMASKED(LOG_GPIO, "pxa255: GPIO%d written: %d\n", offset, val);
@@ -1353,7 +1353,7 @@ void pxa255_periphs_device::lcd_w(address_space &space, offs_t offset, uint32_t
}
}
-uin32_t pxa255_periphs_device::power_r(offs_t offset, uint32_t mem_mask)
+uint32_t pxa255_periphs_device::power_r(offs_t offset, uint32_t mem_mask)
{
switch(PXA255_POWER_BASE_ADDR | (offset << 2))
{