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

- Enable the 3.3V Vaux supply if available so devices can request wakeup
with either Beacon or WAKE# (Richard Zhu)

* pci/controller/imx6:
PCI: imx6: Enable the Vaux supply if available

+4
+4
drivers/pci/controller/dwc/pci-imx6.c
··· 1741 1741 pci->max_link_speed = 1; 1742 1742 of_property_read_u32(node, "fsl,max-link-speed", &pci->max_link_speed); 1743 1743 1744 + ret = devm_regulator_get_enable_optional(&pdev->dev, "vpcie3v3aux"); 1745 + if (ret < 0 && ret != -ENODEV) 1746 + return dev_err_probe(dev, ret, "failed to enable Vaux supply\n"); 1747 + 1744 1748 imx_pcie->vpcie = devm_regulator_get_optional(&pdev->dev, "vpcie"); 1745 1749 if (IS_ERR(imx_pcie->vpcie)) { 1746 1750 if (PTR_ERR(imx_pcie->vpcie) != -ENODEV)