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/plda'

- Return -ENOMEM directly instead of using dev_err_probe() (Xichao Zhao)

* pci/controller/plda:
PCI: plda: Remove dev_err_probe() when the errno is -ENOMEM

+1 -2
+1 -2
drivers/pci/controller/plda/pcie-plda-host.c
··· 599 599 600 600 bridge = devm_pci_alloc_host_bridge(dev, 0); 601 601 if (!bridge) 602 - return dev_err_probe(dev, -ENOMEM, 603 - "failed to alloc bridge\n"); 602 + return -ENOMEM; 604 603 605 604 if (port->host_ops && port->host_ops->host_init) { 606 605 ret = port->host_ops->host_init(port);