diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2015-01-22 20:25:54 +0100 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2015-01-24 00:19:52 +0100 |
commit | 29ef709195977d151199464b0c4ce4d8f193f244 (patch) | |
tree | f44252bc329fc96033757146c89f70d19eefaa34 /drivers/pci | |
parent | Linux 3.19-rc1 (diff) | |
download | linux-29ef709195977d151199464b0c4ce4d8f193f244.tar.xz linux-29ef709195977d151199464b0c4ce4d8f193f244.zip |
PCI: xgene: Include clk.h instead of clk-private.h
This driver should be including clk.h as it's a clock consumer, not a clock
provider that needs to register clocks early.
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Tanmay Inamdar <tinamdar@apm.com>
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/host/pci-xgene.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/host/pci-xgene.c b/drivers/pci/host/pci-xgene.c index b1d0596457c5..fdb348d3ccd3 100644 --- a/drivers/pci/host/pci-xgene.c +++ b/drivers/pci/host/pci-xgene.c @@ -16,7 +16,7 @@ * GNU General Public License for more details. * */ -#include <linux/clk-private.h> +#include <linux/clk.h> #include <linux/delay.h> #include <linux/io.h> #include <linux/jiffies.h> |