mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -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
|
@ -508,7 +508,7 @@ static void hpet_ram_writel(void *opaque, target_phys_addr_t addr,
|
|||
}
|
||||
}
|
||||
|
||||
static CPUReadMemoryFunc *hpet_ram_read[] = {
|
||||
static CPUReadMemoryFunc * const hpet_ram_read[] = {
|
||||
#ifdef HPET_DEBUG
|
||||
hpet_ram_readb,
|
||||
hpet_ram_readw,
|
||||
|
@ -519,7 +519,7 @@ static CPUReadMemoryFunc *hpet_ram_read[] = {
|
|||
hpet_ram_readl,
|
||||
};
|
||||
|
||||
static CPUWriteMemoryFunc *hpet_ram_write[] = {
|
||||
static CPUWriteMemoryFunc * const hpet_ram_write[] = {
|
||||
#ifdef HPET_DEBUG
|
||||
hpet_ram_writeb,
|
||||
hpet_ram_writew,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue