Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 21b72450 authored by Andrey Smirnov's avatar Andrey Smirnov Committed by Bjorn Helgaas
Browse files

PCI: imx6: Fix a typo in error message



Fix a typo in the "pcie_inbound_axi clock missing or invalid" error
message.

Signed-off-by: default avatarAndrey Smirnov <andrew.smirnov@gmail.com>
Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
Acked-by: default avatarLucas Stach <l.stach@pengutronix.de>
CC: yurovsky@gmail.com
CC: Fabio Estevam <fabio.estevam@nxp.com>
parent a7128072
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -646,8 +646,7 @@ static int __init imx6_pcie_probe(struct platform_device *pdev)
		imx6_pcie->pcie_inbound_axi = devm_clk_get(dev,
							   "pcie_inbound_axi");
		if (IS_ERR(imx6_pcie->pcie_inbound_axi)) {
			dev_err(dev,
				"pcie_incbound_axi clock missing or invalid\n");
			dev_err(dev, "pcie_inbound_axi clock missing or invalid\n");
			return PTR_ERR(imx6_pcie->pcie_inbound_axi);
		}
	}