diff options
author | Thierry Reding <treding@nvidia.com> | 2017-02-23 20:11:57 +0300 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2017-04-04 16:43:50 +0300 |
commit | 5e7d4c65294174d6f58fe36df3edd55cd3b859d6 (patch) | |
tree | ebdf2ddfd0f345b671a3d803155de6ad81657987 /drivers/soc/tegra/Makefile | |
parent | c1ae3cfa0e89fa1a7ecc4c99031f5e9ae99d9201 (diff) | |
download | linux-5e7d4c65294174d6f58fe36df3edd55cd3b859d6.tar.xz |
soc/tegra: Implement Tegra186 PMC support
The power management controller on Tegra186 has changed in backwards-
incompatible ways with respect to earlier generations. This implements a
new driver that supports inversion of the PMU interrupt as well as the
"recovery", "bootloader" and "forced-recovery" reboot commands.
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/soc/tegra/Makefile')
-rw-r--r-- | drivers/soc/tegra/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/soc/tegra/Makefile b/drivers/soc/tegra/Makefile index ae857ff7d53d..b4425e4319ff 100644 --- a/drivers/soc/tegra/Makefile +++ b/drivers/soc/tegra/Makefile @@ -1,4 +1,5 @@ obj-y += fuse/ obj-y += common.o -obj-y += pmc.o +obj-$(CONFIG_SOC_TEGRA_PMC) += pmc.o +obj-$(CONFIG_SOC_TEGRA_PMC_TEGRA186) += pmc-tegra186.o |