Re: [Qemu-devel] [PATCH 1/3] target-arm: Add GIC phandle to VirtBoardInfo

2015-04-21 Thread Peter Maydell
On 8 April 2015 at 22:20, Christoffer Dall wrote: > Instead of passing the GIC phandle around between functions, add it to > the VirtBoardInfo just like we do for the clock_phandle. We are about > to add the v2m phandle as well, and it's easier not having to pass > around a bunch of phandles, ret

[Qemu-devel] [PATCH 1/3] target-arm: Add GIC phandle to VirtBoardInfo

2015-04-08 Thread Christoffer Dall
Instead of passing the GIC phandle around between functions, add it to the VirtBoardInfo just like we do for the clock_phandle. We are about to add the v2m phandle as well, and it's easier not having to pass around a bunch of phandles, return multiple values from functions, etc. Signed-off-by: Ch