mirror of https://github.com/xemu-project/xemu.git
pcie: pcie_cap_slot_write_config(): use correct macro
PCI_EXP_SLTCTL_PIC_OFF is a value, and PCI_EXP_SLTCTL_PIC is a mask. Happily PCI_EXP_SLTCTL_PIC_OFF is a maximum value for this mask and is equal to the mask itself. Still the code looks like a bug. Let's make it more reader-friendly. Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Anton Kuchin <antonkuchin@yandex-team.ru> Message-Id: <20230216180356.156832-8-vsementsov@yandex-team.ru> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
05d8a107db
commit
cd6992c6b5
|
@ -770,9 +770,9 @@ void pcie_cap_slot_write_config(PCIDevice *dev,
|
||||||
* control of powered off slots before powering them on.
|
* control of powered off slots before powering them on.
|
||||||
*/
|
*/
|
||||||
if ((sltsta & PCI_EXP_SLTSTA_PDS) && (val & PCI_EXP_SLTCTL_PCC) &&
|
if ((sltsta & PCI_EXP_SLTSTA_PDS) && (val & PCI_EXP_SLTCTL_PCC) &&
|
||||||
(val & PCI_EXP_SLTCTL_PIC_OFF) == PCI_EXP_SLTCTL_PIC_OFF &&
|
(val & PCI_EXP_SLTCTL_PIC) == PCI_EXP_SLTCTL_PIC_OFF &&
|
||||||
(!(old_slt_ctl & PCI_EXP_SLTCTL_PCC) ||
|
(!(old_slt_ctl & PCI_EXP_SLTCTL_PCC) ||
|
||||||
(old_slt_ctl & PCI_EXP_SLTCTL_PIC_OFF) != PCI_EXP_SLTCTL_PIC_OFF)) {
|
(old_slt_ctl & PCI_EXP_SLTCTL_PIC) != PCI_EXP_SLTCTL_PIC_OFF)) {
|
||||||
pcie_cap_slot_do_unplug(dev);
|
pcie_cap_slot_do_unplug(dev);
|
||||||
}
|
}
|
||||||
pcie_cap_update_power(dev);
|
pcie_cap_update_power(dev);
|
||||||
|
|
Loading…
Reference in New Issue