Am Sonntag, den 31.03.2019, 21:25 -0700 schrieb Andrey Smirnov: > Change error code from EINVAL to ETIMEDOUT in > imx6_pcie_wait_for_speed_change() since that error code seems more > appropriate. > > > Cc: Lorenzo Pieralisi <[email protected]> > > Cc: Bjorn Helgaas <[email protected]> > > Cc: Fabio Estevam <[email protected]> > > Cc: Chris Healy <[email protected]> > > Cc: Lucas Stach <[email protected]> > > Cc: Leonard Crestez <[email protected]> > > Cc: "A.s. Dong" <[email protected]> > > Cc: Richard Zhu <[email protected]> > Cc: [email protected] > Cc: [email protected] > Cc: [email protected] > Cc: [email protected] > Signed-off-by: Andrey Smirnov <[email protected]>
Reviewed-by: Lucas Stach <[email protected]> > --- > drivers/pci/controller/dwc/pci-imx6.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/pci/controller/dwc/pci-imx6.c > b/drivers/pci/controller/dwc/pci-imx6.c > index 7582d0b2fbe7..3f4707072942 100644 > --- a/drivers/pci/controller/dwc/pci-imx6.c > +++ b/drivers/pci/controller/dwc/pci-imx6.c > @@ -747,7 +747,7 @@ static int imx6_pcie_wait_for_speed_change(struct > imx6_pcie *imx6_pcie) > > } > > > dev_err(dev, "Speed change timeout\n"); > > - return -EINVAL; > > + return -ETIMEDOUT; > } > > static void imx6_pcie_ltssm_enable(struct device *dev)

