mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -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
|
@ -654,13 +654,13 @@ static void serial_event(void *opaque, int event)
|
|||
serial_receive_break(s);
|
||||
}
|
||||
|
||||
static CPUReadMemoryFunc *escc_mem_read[3] = {
|
||||
static CPUReadMemoryFunc * const escc_mem_read[3] = {
|
||||
escc_mem_readb,
|
||||
NULL,
|
||||
NULL,
|
||||
};
|
||||
|
||||
static CPUWriteMemoryFunc *escc_mem_write[3] = {
|
||||
static CPUWriteMemoryFunc * const escc_mem_write[3] = {
|
||||
escc_mem_writeb,
|
||||
NULL,
|
||||
NULL,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue