On 3/23/20 9:30 PM, akpm@linux-foundation.org wrote: > The mm-of-the-moment snapshot 2020-03-23-21-29 has been uploaded to > > http://www.ozlabs.org/~akpm/mmotm/ > > mmotm-readme.txt says > > README for mm-of-the-moment: > > http://www.ozlabs.org/~akpm/mmotm/ > > This is a snapshot of my -mm patch queue. Uploaded at random hopefully > more than once a week. > > You will need quilt to apply these patches to the latest Linus release (5.x > or 5.x-rcY). The series file is in broken-out.tar.gz and is duplicated in > http://ozlabs.org/~akpm/mmotm/series on x86_64: ../drivers/pci/controller/dwc/pcie-tegra194.c: In function ‘tegra_pcie_dw_parse_dt’: ../drivers/pci/controller/dwc/pcie-tegra194.c:1160:24: error: implicit declaration of function ‘devm_gpiod_get’; did you mean ‘devm_phy_get’? [-Werror=implicit-function-declaration] pcie->pex_rst_gpiod = devm_gpiod_get(pcie->dev, "reset", GPIOD_IN); ^~~~~~~~~~~~~~ devm_phy_get ../drivers/pci/controller/dwc/pcie-tegra194.c:1160:59: error: ‘GPIOD_IN’ undeclared (first use in this function); did you mean ‘GPIOF_IN’? pcie->pex_rst_gpiod = devm_gpiod_get(pcie->dev, "reset", GPIOD_IN); ^~~~~~~~ GPIOF_IN ../drivers/pci/controller/dwc/pcie-tegra194.c:1160:59: note: each undeclared identifier is reported only once for each function it appears in ../drivers/pci/controller/dwc/pcie-tegra194.c:1169:11: error: ‘GPIOD_OUT_HIGH’ undeclared (first use in this function); did you mean ‘GPIOF_INIT_HIGH’? GPIOD_OUT_HIGH); ^~~~~~~~~~~~~~ GPIOF_INIT_HIGH ../drivers/pci/controller/dwc/pcie-tegra194.c: In function ‘tegra_pcie_ep_pex_rst_irq’: ../drivers/pci/controller/dwc/pcie-tegra194.c:1872:6: error: implicit declaration of function ‘gpiod_get_value’; did you mean ‘gpio_get_value’? [-Werror=implicit-function-declaration] if (gpiod_get_value(pcie->pex_rst_gpiod)) ^~~~~~~~~~~~~~~ gpio_get_value ../drivers/pci/controller/dwc/pcie-tegra194.c: In function ‘tegra_pcie_config_ep’: ../drivers/pci/controller/dwc/pcie-tegra194.c:1978:8: error: implicit declaration of function ‘gpiod_set_debounce’; did you mean ‘gpio_set_debounce’? [-Werror=implicit-function-declaration] ret = gpiod_set_debounce(pcie->pex_rst_gpiod, PERST_DEBOUNCE_TIME); ^~~~~~~~~~~~~~~~~~ gpio_set_debounce ../drivers/pci/controller/dwc/pcie-tegra194.c:1985:8: error: implicit declaration of function ‘gpiod_to_irq’; did you mean ‘gpio_to_irq’? [-Werror=implicit-function-declaration] ret = gpiod_to_irq(pcie->pex_rst_gpiod); ^~~~~~~~~~~~ gpio_to_irq ../drivers/pci/controller/dwc/pcie-tegra194.c: In function ‘tegra_pcie_dw_probe’: ../drivers/pci/controller/dwc/pcie-tegra194.c:2072:3: error: implicit declaration of function ‘gpiod_set_value’; did you mean ‘gpio_set_value’? [-Werror=implicit-function-declaration] gpiod_set_value(pcie->pex_refclk_sel_gpiod, 1); ^~~~~~~~~~~~~~~ gpio_set_value Full randconfig file is attached. -- ~Randy Reported-by: Randy Dunlap