Karol Herbst
2016-Jan-12 21:52 UTC
[Nouveau] [PATCH v2] pci: fix check in nvkm_pcie_set_link
v2: remove unneeded pci check Signed-off-by: Karol Herbst <nouveau at karolherbst.de> --- drm/nouveau/nvkm/subdev/pci/pcie.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drm/nouveau/nvkm/subdev/pci/pcie.c b/drm/nouveau/nvkm/subdev/pci/pcie.c index b32954f..d71e5db 100644 --- a/drm/nouveau/nvkm/subdev/pci/pcie.c +++ b/drm/nouveau/nvkm/subdev/pci/pcie.c @@ -119,7 +119,7 @@ nvkm_pcie_set_link(struct nvkm_pci *pci, enum nvkm_pcie_speed speed, u8 width) struct pci_bus *pbus; int ret; - if (pci || !pci_is_pcie(pci->pdev)) + if (!pci || !pci_is_pcie(pci->pdev)) return 0; pbus = pci->pdev->bus; -- 2.7.0
Possibly Parallel Threads
- [PATCH] pci: fix check in nvkm_pcie_set_link
- [PATCH] pci: fix typo in nvkm_pcie_set_link()
- [PATCH] pci: fix typo in nvkm_pcie_set_link()
- [PATCH v2 4/4] pci: save the boot pcie link speed and restore it on fini
- [PATCH v4 3/4] pci: set the pcie link speed to 8.0 when suspending