mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
Make CPURead/WriteFunc structure 'const'
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
fa31af0e63
commit
d60efc6b0d
144 changed files with 1552 additions and 554 deletions
|
@ -58,13 +58,13 @@ static void rtc_writeb(void *opaque, target_phys_addr_t addr, uint32_t val)
|
|||
cpu_outw(env, 0x71, val & 0xff);
|
||||
}
|
||||
|
||||
static CPUReadMemoryFunc *rtc_read[3] = {
|
||||
static CPUReadMemoryFunc * const rtc_read[3] = {
|
||||
rtc_readb,
|
||||
rtc_readb,
|
||||
rtc_readb,
|
||||
};
|
||||
|
||||
static CPUWriteMemoryFunc *rtc_write[3] = {
|
||||
static CPUWriteMemoryFunc * const rtc_write[3] = {
|
||||
rtc_writeb,
|
||||
rtc_writeb,
|
||||
rtc_writeb,
|
||||
|
@ -76,13 +76,13 @@ static void dma_dummy_writeb(void *opaque, target_phys_addr_t addr, uint32_t val
|
|||
* the current DMA acknowledge cycle is completed. */
|
||||
}
|
||||
|
||||
static CPUReadMemoryFunc *dma_dummy_read[3] = {
|
||||
static CPUReadMemoryFunc * const dma_dummy_read[3] = {
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
};
|
||||
|
||||
static CPUWriteMemoryFunc *dma_dummy_write[3] = {
|
||||
static CPUWriteMemoryFunc * const dma_dummy_write[3] = {
|
||||
dma_dummy_writeb,
|
||||
dma_dummy_writeb,
|
||||
dma_dummy_writeb,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue