mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03: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
|
@ -202,13 +202,13 @@ static void dma_mem_writel(void *opaque, target_phys_addr_t addr, uint32_t val)
|
|||
s->dmaregs[saddr] = val;
|
||||
}
|
||||
|
||||
static CPUReadMemoryFunc *dma_mem_read[3] = {
|
||||
static CPUReadMemoryFunc * const dma_mem_read[3] = {
|
||||
NULL,
|
||||
NULL,
|
||||
dma_mem_readl,
|
||||
};
|
||||
|
||||
static CPUWriteMemoryFunc *dma_mem_write[3] = {
|
||||
static CPUWriteMemoryFunc * const dma_mem_write[3] = {
|
||||
NULL,
|
||||
NULL,
|
||||
dma_mem_writel,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue