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
|
@ -1526,13 +1526,13 @@ static void omap_dma_write(void *opaque, target_phys_addr_t addr,
|
|||
OMAP_BAD_REG(addr);
|
||||
}
|
||||
|
||||
static CPUReadMemoryFunc *omap_dma_readfn[] = {
|
||||
static CPUReadMemoryFunc * const omap_dma_readfn[] = {
|
||||
omap_badwidth_read16,
|
||||
omap_dma_read,
|
||||
omap_badwidth_read16,
|
||||
};
|
||||
|
||||
static CPUWriteMemoryFunc *omap_dma_writefn[] = {
|
||||
static CPUWriteMemoryFunc * const omap_dma_writefn[] = {
|
||||
omap_badwidth_write16,
|
||||
omap_dma_write,
|
||||
omap_badwidth_write16,
|
||||
|
@ -2017,13 +2017,13 @@ static void omap_dma4_write(void *opaque, target_phys_addr_t addr,
|
|||
}
|
||||
}
|
||||
|
||||
static CPUReadMemoryFunc *omap_dma4_readfn[] = {
|
||||
static CPUReadMemoryFunc * const omap_dma4_readfn[] = {
|
||||
omap_badwidth_read16,
|
||||
omap_dma4_read,
|
||||
omap_dma4_read,
|
||||
};
|
||||
|
||||
static CPUWriteMemoryFunc *omap_dma4_writefn[] = {
|
||||
static CPUWriteMemoryFunc * const omap_dma4_writefn[] = {
|
||||
omap_badwidth_write16,
|
||||
omap_dma4_write,
|
||||
omap_dma4_write,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue