diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2011-05-17 16:47:04 +1000 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2011-05-20 17:56:03 +0200 |
commit | 1235a9cf179df04cd0dc30fce0089161d18f3168 (patch) | |
tree | 2310a4fe2da2e7d994a3b061f167b2928ecc10a0 /hw/spapr_llan.c | |
parent | 6d42fb313bc517f1b23daea867efb9968874745e (diff) |
pSeries: Clean up write-only variables
A few pieces of the pSeries emulation code have variables which are set
but never used, which causes warnings on gcc 4.6. This patch removes
these instances.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'hw/spapr_llan.c')
-rw-r--r-- | hw/spapr_llan.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/hw/spapr_llan.c b/hw/spapr_llan.c index ff3a78f729..c18efc7ee6 100644 --- a/hw/spapr_llan.c +++ b/hw/spapr_llan.c @@ -185,9 +185,6 @@ static NetClientInfo net_spapr_vlan_info = { static int spapr_vlan_init(VIOsPAPRDevice *sdev) { VIOsPAPRVLANDevice *dev = (VIOsPAPRVLANDevice *)sdev; - VIOsPAPRBus *bus; - - bus = DO_UPCAST(VIOsPAPRBus, bus, sdev->qdev.parent_bus); qemu_macaddr_default_if_unset(&dev->nicconf.macaddr); |