From 2c9b15cab12c21e32dffb67c5e18f3dc407ca224 Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Thu, 6 Jun 2013 05:41:28 -0400 Subject: memory: add owner argument to initialization functions Signed-off-by: Paolo Bonzini --- ioport.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ioport.c') diff --git a/ioport.c b/ioport.c index ef6fb96c63..3a6a73dd98 100644 --- a/ioport.c +++ b/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); -- cgit v1.2.1