drivers/staging/media/tegra-video/tegra20.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-)
Align wrapped arguments in tegra20.c
to follow kernel coding style.
v2:
- Fix From header
- Update commit message per review feedback
Signed-off-by: Marc Hanna <marchanna111@gmail.com>
---
drivers/staging/media/tegra-video/tegra20.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/media/tegra-video/tegra20.c b/drivers/staging/media/tegra-video/tegra20.c
index e513e6ccb776..eb1fc5b7e2cd 100644
--- a/drivers/staging/media/tegra-video/tegra20.c
+++ b/drivers/staging/media/tegra-video/tegra20.c
@@ -552,7 +552,8 @@ static void tegra20_channel_vi_buffer_setup(struct tegra_vi_channel *chan,
case V4L2_PIX_FMT_YUYV:
case V4L2_PIX_FMT_YVYU:
tegra20_vi_write(chan, TEGRA_VI_VB0_BASE_ADDRESS(TEGRA_VI_OUT_1), base);
- tegra20_vi_write(chan, TEGRA_VI_VB0_START_ADDRESS(TEGRA_VI_OUT_1), base + chan->start_offset);
+ tegra20_vi_write(chan, TEGRA_VI_VB0_START_ADDRESS(TEGRA_VI_OUT_1),
+ base + chan->start_offset);
break;
/* RAW8 */
case V4L2_PIX_FMT_SRGGB8:
@@ -565,7 +566,8 @@ static void tegra20_channel_vi_buffer_setup(struct tegra_vi_channel *chan,
case V4L2_PIX_FMT_SGBRG10:
case V4L2_PIX_FMT_SBGGR10:
tegra20_vi_write(chan, TEGRA_VI_VB0_BASE_ADDRESS(TEGRA_VI_OUT_2), base);
- tegra20_vi_write(chan, TEGRA_VI_VB0_START_ADDRESS(TEGRA_VI_OUT_2), base + chan->start_offset);
+ tegra20_vi_write(chan, TEGRA_VI_VB0_START_ADDRESS(TEGRA_VI_OUT_2),
+ base + chan->start_offset);
break;
}
}
--
2.43.0
The subject still says the patch is aligning function arguments when the patch is about long lines. On Tue, Apr 28, 2026 at 01:50:24PM -0500, Marc Hanna wrote: > Align wrapped arguments in tegra20.c > to follow kernel coding style. > > v2: > - Fix From header > - Update commit message per review feedback > This goes under the --- cut off line. > Signed-off-by: Marc Hanna <marchanna111@gmail.com> > --- ^^^ here. https://staticthinking.wordpress.com/2022/07/27/how-to-send-a-v2-patch/ regards, dan carpenter
© 2016 - 2026 Red Hat, Inc.