[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <7ddf46a8-ae98-c567-6d3d-8155989effb5@gmail.com>
Date: Thu, 31 Jan 2019 21:15:15 +0300
From: Dmitry Osipenko <digetx@...il.com>
To: Thierry Reding <thierry.reding@...il.com>,
Sowjanya Komatineni <skomatineni@...dia.com>
Cc: jonathanh@...dia.com, mkarthik@...dia.com, smohammed@...dia.com,
talho@...dia.com, linux-tegra@...r.kernel.org,
linux-kernel@...r.kernel.org, linux-i2c@...r.kernel.org
Subject: Re: [PATCH V7 3/5] i2c: tegra: Add DMA Support
31.01.2019 21:08, Dmitry Osipenko пишет:
> 31.01.2019 19:55, Dmitry Osipenko пишет:
> +config I2C_TEGRA_DMA_SUPPORT
> + bool "NVIDIA Tegra internal I2C controller DMA support"
> + depends on I2C_TEGRA
> + depends on TEGRA20_APB_DMA && ARCH_TEGRA_2x_SOC
> + depends on TEGRA20_APB_DMA && ARCH_TEGRA_3x_SOC
> + depends on TEGRA20_APB_DMA && ARCH_TEGRA_114_SOC
> + depends on TEGRA20_APB_DMA && ARCH_TEGRA_124_SOC
> + depends on TEGRA20_APB_DMA && ARCH_TEGRA_210_SOC
> + help
> + If you say yes to this option, DMA engine integration support will
> + be included for the I2C controller embedded in NVIDIA Tegra SOCs
> +
Actually, seems should be like that:
config I2C_TEGRA_DMA_SUPPORT
bool "NVIDIA Tegra internal I2C controller DMA support"
depends on I2C_TEGRA
depends on (TEGRA20_APB_DMA && ARCH_TEGRA_2x_SOC) || \
(TEGRA20_APB_DMA && ARCH_TEGRA_3x_SOC) || \
(TEGRA20_APB_DMA && ARCH_TEGRA_114_SOC) || \
(TEGRA20_APB_DMA && ARCH_TEGRA_124_SOC) || \
(TEGRA20_APB_DMA && ARCH_TEGRA_210_SOC)
help
If you say yes to this option, DMA engine integration support will
be included for the I2C controller embedded in NVIDIA Tegra SOCs
But you got the idea.
Powered by blists - more mailing lists