mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
memory: add owner argument to initialization functions
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
5767e4e198
commit
2c9b15cab1
319 changed files with 787 additions and 759 deletions
2
ioport.c
2
ioport.c
|
@ -211,7 +211,7 @@ static void portio_list_add_1(PortioList *piolist,
|
|||
* Use an alias so that the callback is called with an absolute address,
|
||||
* rather than an offset relative to to start + off_low.
|
||||
*/
|
||||
memory_region_init_io(&mrpio->mr, &portio_ops, mrpio, piolist->name,
|
||||
memory_region_init_io(&mrpio->mr, NULL, &portio_ops, mrpio, piolist->name,
|
||||
off_high - off_low);
|
||||
memory_region_add_subregion(piolist->address_space,
|
||||
start + off_low, &mrpio->mr);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue