Blame SOURCES/kvm-hw-pci-pcie-Replace-PCI_DEVICE-casts-with-existing-v.patch

902636
From f98a1fdad0aa53337925ac46b73a3e6ad36f6295 Mon Sep 17 00:00:00 2001
902636
From: Julia Suvorova <jusual@redhat.com>
902636
Date: Mon, 4 May 2020 21:25:05 +0100
902636
Subject: [PATCH 2/9] hw/pci/pcie: Replace PCI_DEVICE() casts with existing
902636
 variable
902636
902636
RH-Author: Julia Suvorova <jusual@redhat.com>
902636
Message-id: <20200504212505.15977-3-jusual@redhat.com>
902636
Patchwork-id: 96259
902636
O-Subject: [RHEL-AV-8.2.1 qemu-kvm PATCH 2/2] hw/pci/pcie: Replace PCI_DEVICE() casts with existing variable
902636
Bugzilla: 1820531
902636
RH-Acked-by: Michael S. Tsirkin <mst@redhat.com>
902636
RH-Acked-by: Igor Mammedov <imammedo@redhat.com>
902636
RH-Acked-by: Peter Xu <peterx@redhat.com>
902636
902636
A little cleanup is possible because of hotplug_pdev introduction.
902636
902636
Signed-off-by: Julia Suvorova <jusual@redhat.com>
902636
Message-Id: <20200427182440.92433-3-jusual@redhat.com>
902636
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
902636
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
902636
Reviewed-by: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
902636
(cherry picked from commit 6a1e073378353eb6ac0565e0dc649b3db76ed5dc)
902636
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
902636
---
902636
 hw/pci/pcie.c | 6 +++---
902636
 1 file changed, 3 insertions(+), 3 deletions(-)
902636
902636
diff --git a/hw/pci/pcie.c b/hw/pci/pcie.c
902636
index 6b48d04..abc99b6 100644
902636
--- a/hw/pci/pcie.c
902636
+++ b/hw/pci/pcie.c
902636
@@ -449,7 +449,7 @@ void pcie_cap_slot_plug_cb(HotplugHandler *hotplug_dev, DeviceState *dev,
902636
             pci_word_test_and_set_mask(exp_cap + PCI_EXP_LNKSTA,
902636
                                        PCI_EXP_LNKSTA_DLLLA);
902636
         }
902636
-        pcie_cap_slot_event(PCI_DEVICE(hotplug_dev),
902636
+        pcie_cap_slot_event(hotplug_pdev,
902636
                             PCI_EXP_HP_EV_PDC | PCI_EXP_HP_EV_ABP);
902636
     }
902636
 }
902636
@@ -490,7 +490,7 @@ void pcie_cap_slot_unplug_request_cb(HotplugHandler *hotplug_dev,
902636
         return;
902636
     }
902636
 
902636
-    pcie_cap_slot_plug_common(PCI_DEVICE(hotplug_dev), dev, &local_err);
902636
+    pcie_cap_slot_plug_common(hotplug_pdev, dev, &local_err);
902636
     if (local_err) {
902636
         error_propagate(errp, local_err);
902636
         return;
902636
@@ -509,7 +509,7 @@ void pcie_cap_slot_unplug_request_cb(HotplugHandler *hotplug_dev,
902636
         return;
902636
     }
902636
 
902636
-    pcie_cap_slot_push_attention_button(PCI_DEVICE(hotplug_dev));
902636
+    pcie_cap_slot_push_attention_button(hotplug_pdev);
902636
 }
902636
 
902636
 /* pci express slot for pci express root/downstream port
902636
-- 
902636
1.8.3.1
902636