From 9e315fa93c14d6da7dc5b8fef193a671b51defd8 Mon Sep 17 00:00:00 2001 From: balrog Date: Wed, 9 May 2007 20:25:36 +0000 Subject: PCMCIA addresses are 26-bit, widen the address type from 16 to 32 bits. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2797 c046a42c-6fe2-441c-8c8c-71466251a162 --- vl.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'vl.h') diff --git a/vl.h b/vl.h index f44eeab..171b02b 100644 --- a/vl.h +++ b/vl.h @@ -1552,12 +1552,12 @@ struct pcmcia_card_s { int cis_len; /* Only valid if attached */ - uint8_t (*attr_read)(void *state, uint16_t address); - void (*attr_write)(void *state, uint16_t address, uint8_t value); - uint16_t (*common_read)(void *state, uint16_t address); - void (*common_write)(void *state, uint16_t address, uint16_t value); - uint16_t (*io_read)(void *state, uint16_t address); - void (*io_write)(void *state, uint16_t address, uint16_t value); + uint8_t (*attr_read)(void *state, uint32_t address); + void (*attr_write)(void *state, uint32_t address, uint8_t value); + uint16_t (*common_read)(void *state, uint32_t address); + void (*common_write)(void *state, uint32_t address, uint16_t value); + uint16_t (*io_read)(void *state, uint32_t address); + void (*io_write)(void *state, uint32_t address, uint16_t value); }; #define CISTPL_DEVICE 0x01 /* 5V Device Information Tuple */ -- cgit v1.1