Messages in this thread Patch in this message |  | | From | <> | | Subject | [PATCH 6/6] arm64: defconfig: make Tegra238 and Tegra264 Pinctrl a loadable module | | Date | Thu, 9 Apr 2026 13:13:40 +0000 |
| |
From: Prathamesh Shete <pshete@nvidia.com>
Building the Pinctrl driver into the kernel image increases its size. These drivers are not required during early boot, build them as a loadable module instead to reduce the kernel image size.
Signed-off-by: Prathamesh Shete <pshete@nvidia.com> --- arch/arm64/configs/defconfig | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig index dd1ac01ee29b..f525670d3b84 100644 --- a/arch/arm64/configs/defconfig +++ b/arch/arm64/configs/defconfig @@ -711,6 +711,8 @@ CONFIG_PINCTRL_SC8280XP_LPASS_LPI=m CONFIG_PINCTRL_SM8550_LPASS_LPI=m CONFIG_PINCTRL_SM8650_LPASS_LPI=m CONFIG_PINCTRL_SOPHGO_SG2000=y +CONFIG_PINCTRL_TEGRA238=m +CONFIG_PINCTRL_TEGRA264=m CONFIG_GPIO_ALTERA=m CONFIG_GPIO_CADENCE=m CONFIG_GPIO_DAVINCI=y -- 2.43.0
|  |