diff options
author | Mikko Perttunen <mperttunen@nvidia.com> | 2014-08-11 13:17:48 +0300 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2014-08-17 07:24:53 -0400 |
commit | 0e5740770f34381b5742654a5f297e335c548de5 (patch) | |
tree | 160340af6fe97369994b7c79adb3085296639730 /drivers/ata | |
parent | b741e8d4cf812da665c763e1b1c4a8fd20121565 (diff) | |
download | linux-0e5740770f34381b5742654a5f297e335c548de5.tar.bz2 |
ata: ahci_tegra: Change include to fix compilation
Before this patch, the driver included <linux/tegra-powergate.h>,
which was effectively renamed to <soc/tegra/pmc.h> at about the same
time the ahci_tegra series landed. Fix the include path so that the
driver compiles.
Signed-off-by: Mikko Perttunen <mperttunen@nvidia.com>
Acked-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/ahci_tegra.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/ahci_tegra.c b/drivers/ata/ahci_tegra.c index fc3df47fca35..f1fef74e503c 100644 --- a/drivers/ata/ahci_tegra.c +++ b/drivers/ata/ahci_tegra.c @@ -24,8 +24,8 @@ #include <linux/module.h> #include <linux/of_device.h> #include <linux/platform_device.h> -#include <linux/tegra-powergate.h> #include <linux/regulator/consumer.h> +#include <soc/tegra/pmc.h> #include "ahci.h" #define SATA_CONFIGURATION_0 0x180 |