Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'pci/controller/dwc-nxp-s32g'

* pci/controller/dwc-nxp-s32g:
PCI: s32g: Skip Root Port removal during success

+4 -4
+4 -4
drivers/pci/controller/dwc/pcie-nxp-s32g.c
··· 282 282 283 283 ret = s32g_pcie_parse_port(s32g_pp, of_port); 284 284 if (ret) 285 - goto err_port; 285 + break; 286 286 } 287 287 288 - err_port: 289 - list_for_each_entry_safe(port, tmp, &s32g_pp->ports, list) 290 - list_del(&port->list); 288 + if (ret) 289 + list_for_each_entry_safe(port, tmp, &s32g_pp->ports, list) 290 + list_del(&port->list); 291 291 292 292 return ret; 293 293 }