mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43: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
|
@ -142,12 +142,12 @@ static void scoop_writeb(void *opaque, target_phys_addr_t addr, uint32_t value)
|
|||
}
|
||||
}
|
||||
|
||||
static CPUReadMemoryFunc *scoop_readfn[] = {
|
||||
static CPUReadMemoryFunc * const scoop_readfn[] = {
|
||||
scoop_readb,
|
||||
scoop_readb,
|
||||
scoop_readb,
|
||||
};
|
||||
static CPUWriteMemoryFunc *scoop_writefn[] = {
|
||||
static CPUWriteMemoryFunc * const scoop_writefn[] = {
|
||||
scoop_writeb,
|
||||
scoop_writeb,
|
||||
scoop_writeb,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue