diff options
author | Hiroshi Doyu <hdoyu@nvidia.com> | 2012-11-21 14:41:37 +0200 |
---|---|---|
committer | Stephen Warren <swarren@nvidia.com> | 2012-11-26 14:01:07 -0700 |
commit | f110174910896b7a7d91c0c60d19136815f68c54 (patch) | |
tree | f7e2ae1cf821debb23eab89549519354c800fe19 /drivers/amba | |
parent | 6e25e1b178ee3caf34f229bacfad5ae6780bcec6 (diff) | |
download | linux-3.10-f110174910896b7a7d91c0c60d19136815f68c54.tar.gz linux-3.10-f110174910896b7a7d91c0c60d19136815f68c54.tar.bz2 linux-3.10-f110174910896b7a7d91c0c60d19136815f68c54.zip |
amba: tegra-ahb: Fix warning w/o PM_SLEEP
Fix build warning w/o PM_SLEEP.
Signed-off-by: Hiroshi Doyu <hdoyu@nvidia.com>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'drivers/amba')
-rw-r--r-- | drivers/amba/tegra-ahb.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/amba/tegra-ahb.c b/drivers/amba/tegra-ahb.c index 0b6f0b28a48..ce8fdadf369 100644 --- a/drivers/amba/tegra-ahb.c +++ b/drivers/amba/tegra-ahb.c @@ -156,6 +156,7 @@ int tegra_ahb_enable_smmu(struct device_node *dn) EXPORT_SYMBOL(tegra_ahb_enable_smmu); #endif +#ifdef CONFIG_PM_SLEEP static int tegra_ahb_suspend(struct device *dev) { int i; @@ -175,6 +176,7 @@ static int tegra_ahb_resume(struct device *dev) gizmo_writel(ahb, ahb->ctx[i], tegra_ahb_gizmo[i]); return 0; } +#endif static UNIVERSAL_DEV_PM_OPS(tegra_ahb_pm, tegra_ahb_suspend, |