mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 05:55:44 +02:00
PCI/ERR: Avoid negated conditional for clarity
[ Upstream commit 3d7d8fc78f ]
Reverse the sense of the Root Port/Downstream Port conditional for clarity.
No functional change intended.
Link: https://lore.kernel.org/r/20201121001036.8560-9-sean.v.kelley@intel.com
Tested-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> # non-native/no RCEC
Signed-off-by: Sean V Kelley <sean.v.kelley@intel.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
078d79fad5
commit
7730ba6151
|
|
@ -159,11 +159,11 @@ pci_ers_result_t pcie_do_recovery(struct pci_dev *dev,
|
||||||
* Error recovery runs on all subordinates of the bridge. If the
|
* Error recovery runs on all subordinates of the bridge. If the
|
||||||
* bridge detected the error, it is cleared at the end.
|
* bridge detected the error, it is cleared at the end.
|
||||||
*/
|
*/
|
||||||
if (!(type == PCI_EXP_TYPE_ROOT_PORT ||
|
if (type == PCI_EXP_TYPE_ROOT_PORT ||
|
||||||
type == PCI_EXP_TYPE_DOWNSTREAM))
|
type == PCI_EXP_TYPE_DOWNSTREAM)
|
||||||
bridge = pci_upstream_bridge(dev);
|
|
||||||
else
|
|
||||||
bridge = dev;
|
bridge = dev;
|
||||||
|
else
|
||||||
|
bridge = pci_upstream_bridge(dev);
|
||||||
|
|
||||||
bus = bridge->subordinate;
|
bus = bridge->subordinate;
|
||||||
pci_dbg(bridge, "broadcast error_detected message\n");
|
pci_dbg(bridge, "broadcast error_detected message\n");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user