mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33: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
|
@ -559,13 +559,13 @@ static void pxa2xx_lcdc_write(void *opaque,
|
|||
}
|
||||
}
|
||||
|
||||
static CPUReadMemoryFunc *pxa2xx_lcdc_readfn[] = {
|
||||
static CPUReadMemoryFunc * const pxa2xx_lcdc_readfn[] = {
|
||||
pxa2xx_lcdc_read,
|
||||
pxa2xx_lcdc_read,
|
||||
pxa2xx_lcdc_read
|
||||
};
|
||||
|
||||
static CPUWriteMemoryFunc *pxa2xx_lcdc_writefn[] = {
|
||||
static CPUWriteMemoryFunc * const pxa2xx_lcdc_writefn[] = {
|
||||
pxa2xx_lcdc_write,
|
||||
pxa2xx_lcdc_write,
|
||||
pxa2xx_lcdc_write
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue