summaryrefslogtreecommitdiffstats
path: root/include/hw
diff options
context:
space:
mode:
authorCédric Le Goater2017-02-27 15:29:23 +0100
committerDavid Gibson2017-03-01 01:23:39 +0100
commitbf50860d1b3652e480b4efef9856afa428c3d8d4 (patch)
treef15be721e5fcdf8b90f8c9dd379ee259d79a29e2 /include/hw
parentppc/xics: move kernel_xics_fd out of KVMXICSState (diff)
downloadqemu-bf50860d1b3652e480b4efef9856afa428c3d8d4.tar.gz
qemu-bf50860d1b3652e480b4efef9856afa428c3d8d4.tar.xz
qemu-bf50860d1b3652e480b4efef9856afa428c3d8d4.zip
ppc/xics: simplify the cpu_setup() handler
The cpu_setup() handler currently takes a 'XICSState *' argument to grab the kernel ICP file descriptor. This interface can be simplified by using the 'xics' backlink of the ICP object. This change is also required by subsequent patches which makes use of the QOM interface for XICS. Signed-off-by: Cédric Le Goater <clg@kaod.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'include/hw')
-rw-r--r--include/hw/ppc/xics.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/ppc/xics.h b/include/hw/ppc/xics.h
index 01ca5e2dab..8325dbdaf1 100644
--- a/include/hw/ppc/xics.h
+++ b/include/hw/ppc/xics.h
@@ -74,7 +74,7 @@ typedef struct XICSFabric XICSFabric;
struct XICSStateClass {
DeviceClass parent_class;
- void (*cpu_setup)(XICSState *icp, PowerPCCPU *cpu);
+ void (*cpu_setup)(ICPState *icp, PowerPCCPU *cpu);
};
struct XICSState {