From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:34590) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TtNsN-0005KQ-QW for qemu-devel@nongnu.org; Thu, 10 Jan 2013 14:33:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TtNsL-0001Tx-F1 for qemu-devel@nongnu.org; Thu, 10 Jan 2013 14:33:19 -0500 Received: from smtp1-g21.free.fr ([2a01:e0c:1:1599::10]:49263) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TtNsK-0001Tc-So for qemu-devel@nongnu.org; Thu, 10 Jan 2013 14:33:17 -0500 Message-ID: <50EF1770.2070506@reactos.org> Date: Thu, 10 Jan 2013 20:33:04 +0100 From: =?UTF-8?B?SGVydsOpIFBvdXNzaW5lYXU=?= MIME-Version: 1.0 References: <1357334986-13941-1-git-send-email-hpoussin@reactos.org> <1357334986-13941-11-git-send-email-hpoussin@reactos.org> <50EEFE22.3080909@suse.de> In-Reply-To: <50EEFE22.3080909@suse.de> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH 10/10] memory: remove old_portio-style callbacks support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?B?QW5kcmVhcyBGw6RyYmVy?= Cc: qemu-devel@nongnu.org Andreas F=C3=A4rber a =C3=A9crit : > Am 04.01.2013 22:29, schrieb Herv=C3=A9 Poussineau: >> Signed-off-by: Herv=C3=A9 Poussineau >> --- >> include/exec/memory.h | 4 ---- >> memory.c | 44 ----------------------------------------= ---- >> 2 files changed, 48 deletions(-) >> >> diff --git a/include/exec/memory.h b/include/exec/memory.h >> index 2322732..4a757f0 100644 >> --- a/include/exec/memory.h >> +++ b/include/exec/memory.h >> @@ -103,10 +103,6 @@ struct MemoryRegionOps { >> bool unaligned; >> } impl; >> =20 >> - /* If .read and .write are not present, old_portio may be used fo= r >> - * backwards compatibility with old portio registration >> - */ >> - const MemoryRegionPortio *old_portio; >> /* If .read and .write are not present, old_mmio may be used for >> * backwards compatibility with old mmio registration >> */ >=20 > Can't struct MemoryRegionPortio be removed as part of the patch? No, it is also used as parameter for the isa_register_portio_list()=20 function. isa_register_portio_list() parses this list and creates=20 corresponding MemoryRegions. Herv=C3=A9