Commit 8bd4aaf438e3 ("media: staging: tegra-vde: De-stage driver") moved the Tegra VDE driver out of staging and updated the Kconfig symbol for enabling the driver from CONFIG_TEGRA_VDE to CONFIG_VIDEO_TEGRA_VDE. However, the tegra_defconfig was not updated and so the driver is no longer enabled by default. Furthermore, now that the Tegra VDE driver has been moved under the Kconfig symbol CONFIG_V4L_MEM2MEM_DRIVERS, it is now also necessary to enable CONFIG_V4L_MEM2MEM_DRIVERS in order to enable CONFIG_VIDEO_TEGRA_VDE. Fix this by ensuring that CONFIG_V4L_MEM2MEM_DRIVERS and CONFIG_VIDEO_TEGRA_VDE are both enabled in the tegra_defconfig. Fixes: 8bd4aaf438e3 ("media: staging: tegra-vde: De-stage driver") Signed-off-by: Jon Hunter <jonathanh@xxxxxxxxxx> --- arch/arm/configs/tegra_defconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/arm/configs/tegra_defconfig b/arch/arm/configs/tegra_defconfig index 289d022acc4b..c209722399d7 100644 --- a/arch/arm/configs/tegra_defconfig +++ b/arch/arm/configs/tegra_defconfig @@ -286,7 +286,8 @@ CONFIG_SERIO_NVEC_PS2=y CONFIG_NVEC_POWER=y CONFIG_NVEC_PAZ00=y CONFIG_STAGING_MEDIA=y -CONFIG_TEGRA_VDE=y +CONFIG_V4L_MEM2MEM_DRIVERS=y +CONFIG_VIDEO_TEGRA_VDE=y CONFIG_CHROME_PLATFORMS=y CONFIG_CROS_EC=y CONFIG_CROS_EC_I2C=m -- 2.25.1