diff options
author | Michael Turquette <mturquette@linaro.org> | 2015-01-29 12:05:37 -0800 |
---|---|---|
committer | Michael Turquette <mturquette@linaro.org> | 2015-02-02 14:23:40 -0800 |
commit | c87ea8a8a0af8b76c1e4d1bd67ed7859c04477a7 (patch) | |
tree | e781f81ca6ac288cac69db93cadf4ab863873834 /drivers | |
parent | 42ed83f51619bdde623f1a8d87836e707c54608d (diff) | |
download | linux-c87ea8a8a0af8b76c1e4d1bd67ed7859c04477a7.tar.bz2 |
pci: xgene: do not use clk-private.h
The X-Gene PCIe driver consumes clocks and does not provide them.
Replace usage of clk-private.h with clk.h.
Cc: Tanmay Inamdar <tinamdar@apm.com>
Signed-off-by: Michael Turquette <mturquette@linaro.org>
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> |