mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -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
|
@ -401,13 +401,13 @@ static void omap_lcdc_write(void *opaque, target_phys_addr_t addr,
|
|||
}
|
||||
}
|
||||
|
||||
static CPUReadMemoryFunc *omap_lcdc_readfn[] = {
|
||||
static CPUReadMemoryFunc * const omap_lcdc_readfn[] = {
|
||||
omap_lcdc_read,
|
||||
omap_lcdc_read,
|
||||
omap_lcdc_read,
|
||||
};
|
||||
|
||||
static CPUWriteMemoryFunc *omap_lcdc_writefn[] = {
|
||||
static CPUWriteMemoryFunc * const omap_lcdc_writefn[] = {
|
||||
omap_lcdc_write,
|
||||
omap_lcdc_write,
|
||||
omap_lcdc_write,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue