diff options
author | Stephen Warren <swarren@nvidia.com> | 2017-09-14 12:50:22 -0400 |
---|---|---|
committer | mobile promotions <svcmobile_promotions@nvidia.com> | 2017-10-29 14:00:47 -0400 |
commit | 771dac969c71d1875803d79a40be4cb154874ee8 (patch) | |
tree | e2cabf043c13340883d032476387270e5fe0e987 /drivers/pinctrl | |
parent | 018429530cb873da7ca65c4da3d6b44f8544ac48 (diff) |
t19x: use kernel overlay features
Update all Kconfig files and Makefiles to rely on the kernel overlay
feature. In particular, don't include any Kconfig files or Makefiles
from other overlays. -I directives in CFLAGS are not yet cleaned up.
Bug 1978395
Change-Id: I5ee70b91c5137dd8b36e0adb56a0763fbf2cb123
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/1561188
GVS: Gerrit_Virtual_Submit
Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com>
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/pinctrl')
-rw-r--r-- | drivers/pinctrl/Kconfig (renamed from drivers/pinctrl/Kconfig.t19x) | 4 | ||||
-rw-r--r-- | drivers/pinctrl/Makefile (renamed from drivers/pinctrl/Makefile.t19x) | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/drivers/pinctrl/Kconfig.t19x b/drivers/pinctrl/Kconfig index 9f1425e28..d6a800b63 100644 --- a/drivers/pinctrl/Kconfig.t19x +++ b/drivers/pinctrl/Kconfig | |||
@@ -1,3 +1,5 @@ | |||
1 | append_menu "Pin controllers" | ||
2 | |||
1 | config PINCTRL_TEGRA194 | 3 | config PINCTRL_TEGRA194 |
2 | bool "NVIDIA Tegra194 Pinmux support" | 4 | bool "NVIDIA Tegra194 Pinmux support" |
3 | select PINCTRL_TEGRA | 5 | select PINCTRL_TEGRA |
@@ -13,3 +15,5 @@ config PINCTRL_TEGRA194_PEXCLK_PADCTL | |||
13 | Support for the NVIDIA Tegra194 PCIE PEXCLK Padcontrol | 15 | Support for the NVIDIA Tegra194 PCIE PEXCLK Padcontrol |
14 | configurations. This will provide the mechanism to dynamically | 16 | configurations. This will provide the mechanism to dynamically |
15 | select the functionality between camera and PCIE. | 17 | select the functionality between camera and PCIE. |
18 | |||
19 | endmenu | ||
diff --git a/drivers/pinctrl/Makefile.t19x b/drivers/pinctrl/Makefile index a33e6049b..f37bae0d7 100644 --- a/drivers/pinctrl/Makefile.t19x +++ b/drivers/pinctrl/Makefile | |||
@@ -1,3 +1,5 @@ | |||
1 | ifdef CONFIG_ARCH_TEGRA_19x_SOC | ||
2 | |||
1 | GCOV_PROFILE_pinctrl-tegra194-padctl.o := y | 3 | GCOV_PROFILE_pinctrl-tegra194-padctl.o := y |
2 | 4 | ||
3 | ccflags-y += -Werror | 5 | ccflags-y += -Werror |
@@ -9,3 +11,5 @@ ccflags-y += -I$(srctree)/../nvidia/include | |||
9 | 11 | ||
10 | obj-$(CONFIG_PINCTRL_TEGRA194) += pinctrl-tegra194.o | 12 | obj-$(CONFIG_PINCTRL_TEGRA194) += pinctrl-tegra194.o |
11 | obj-$(CONFIG_PINCTRL_TEGRA194_PEXCLK_PADCTL) += pinctrl-tegra194-pexclk-padctrl.o | 13 | obj-$(CONFIG_PINCTRL_TEGRA194_PEXCLK_PADCTL) += pinctrl-tegra194-pexclk-padctrl.o |
14 | |||
15 | endif | ||