aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/xen
diff options
context:
space:
mode:
authorKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>2013-12-03 21:34:03 -0500
committerKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>2014-05-23 12:33:30 -0400
commit8899035eec4105a10149817fdaf684f127670f8c (patch)
tree8881764f77f744008c3c30a2955e310cb31d892d /drivers/xen
parentf59c5145dc6a079b14b349c388d44362eb813cdf (diff)
xen-pciback: Cleanup up pcistub_put_pci_dev
We are using 'psdev->dev','found_psdev->dev', and 'dev' at the same time - and they all point to the same structure. To keep it straight lets just use one - 'dev'. Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> Reviewed-by: Jan Beulich <jbeulich@suse.com> Reviewed-by: David Vrabel <david.vrabel@citrix.com>
Diffstat (limited to 'drivers/xen')
-rw-r--r--drivers/xen/xen-pciback/pci_stub.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/xen/xen-pciback/pci_stub.c b/drivers/xen/xen-pciback/pci_stub.c
index 62fcd485f0a7..5300a216896d 100644
--- a/drivers/xen/xen-pciback/pci_stub.c
+++ b/drivers/xen/xen-pciback/pci_stub.c
@@ -272,16 +272,16 @@ void pcistub_put_pci_dev(struct pci_dev *dev)
272 * and want to inhibit the user from fiddling with 'reset' 272 * and want to inhibit the user from fiddling with 'reset'
273 */ 273 */
274 pci_reset_function(dev); 274 pci_reset_function(dev);
275 pci_restore_state(psdev->dev); 275 pci_restore_state(dev);
276 276
277 /* This disables the device. */ 277 /* This disables the device. */
278 xen_pcibk_reset_device(found_psdev->dev); 278 xen_pcibk_reset_device(dev);
279 279
280 /* And cleanup up our emulated fields. */ 280 /* And cleanup up our emulated fields. */
281 xen_pcibk_config_free_dyn_fields(found_psdev->dev); 281 xen_pcibk_config_free_dyn_fields(dev);
282 xen_pcibk_config_reset_dev(found_psdev->dev); 282 xen_pcibk_config_reset_dev(dev);
283 283
284 xen_unregister_device_domain_owner(found_psdev->dev); 284 xen_unregister_device_domain_owner(dev);
285 285
286 spin_lock_irqsave(&found_psdev->lock, flags); 286 spin_lock_irqsave(&found_psdev->lock, flags);
287 found_psdev->pdev = NULL; 287 found_psdev->pdev = NULL;