]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
PCI: imx6: Fix a typo in error message
authorAndrey Smirnov <andrew.smirnov@gmail.com>
Tue, 7 Feb 2017 15:50:25 +0000 (07:50 -0800)
committerBjorn Helgaas <bhelgaas@google.com>
Fri, 10 Feb 2017 21:21:45 +0000 (15:21 -0600)
Fix a typo in the "pcie_inbound_axi clock missing or invalid" error
message.

Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Lucas Stach <l.stach@pengutronix.de>
CC: yurovsky@gmail.com
CC: Fabio Estevam <fabio.estevam@nxp.com>
drivers/pci/host/pci-imx6.c

index 0f4f7c6eabfd75e932995220e420a41f29a5f261..ac34011dba02723d852c6a12505698a6c75164e5 100644 (file)
@@ -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);
                }
        }