diff options
-rw-r--r-- | drivers/pci/host/pci-ftpci100.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/host/pci-ftpci100.c b/drivers/pci/host/pci-ftpci100.c index 96028f01bc90..a19919c17d04 100644 --- a/drivers/pci/host/pci-ftpci100.c +++ b/drivers/pci/host/pci-ftpci100.c | |||
@@ -481,7 +481,7 @@ static int faraday_pci_probe(struct platform_device *pdev) | |||
481 | } | 481 | } |
482 | p->bus_clk = devm_clk_get(dev, "PCICLK"); | 482 | p->bus_clk = devm_clk_get(dev, "PCICLK"); |
483 | if (IS_ERR(p->bus_clk)) | 483 | if (IS_ERR(p->bus_clk)) |
484 | return PTR_ERR(clk); | 484 | return PTR_ERR(p->bus_clk); |
485 | ret = clk_prepare_enable(p->bus_clk); | 485 | ret = clk_prepare_enable(p->bus_clk); |
486 | if (ret) { | 486 | if (ret) { |
487 | dev_err(dev, "could not prepare PCICLK\n"); | 487 | dev_err(dev, "could not prepare PCICLK\n"); |