diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2015-01-22 11:25:54 -0800 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2015-01-23 17:19:52 -0600 |
commit | 29ef709195977d151199464b0c4ce4d8f193f244 (patch) | |
tree | f44252bc329fc96033757146c89f70d19eefaa34 /drivers | |
parent | 97bf6af1f928216fd6c5a66e8a57bfa95a659672 (diff) |
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')
-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> |