diff options
author | Andreas Färber <afaerber@suse.de> | 2013-07-12 19:21:22 +0200 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2013-07-29 20:45:13 +0200 |
commit | 5315dc78d089191e6a34a9f9f8913b7f365d504a (patch) | |
tree | 8ccd3dbe860c7bb77083e702edfca0946a38b67f /hw/pci-bridge | |
parent | 57524e14cf12cbc148b0a268d93b3e8457a010a3 (diff) |
pci-bridge/i82801b11: Rename parent field
Rename it to avoid accidental use.
Reviewed-by: Don Koch <dkoch@verizon.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'hw/pci-bridge')
-rw-r--r-- | hw/pci-bridge/i82801b11.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hw/pci-bridge/i82801b11.c b/hw/pci-bridge/i82801b11.c index 82e92d8223..8a5e426bea 100644 --- a/hw/pci-bridge/i82801b11.c +++ b/hw/pci-bridge/i82801b11.c @@ -52,7 +52,9 @@ #define I82801ba_SSVID_SSID 0 typedef struct I82801b11Bridge { - PCIBridge br; + /*< private >*/ + PCIBridge parent_obj; + /*< public >*/ } I82801b11Bridge; static int i82801b11_bridge_initfn(PCIDevice *d) |