提交 d9f4844a 编写于 作者: N Nicholas Mc Guire 提交者: Mauro Carvalho Chehab

[media] staging: media: davinci_vpfe: drop condition with no effect

As the if and else branch body are identical the condition has no effect and
can be dropped.
Signed-off-by: NNicholas Mc Guire <der.herr@hofr.at>
Acked-by: NLad, Prabhakar <prabhakar.csengg@gmail.com>
Signed-off-by: NLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: NMauro Carvalho Chehab <mchehab@osg.samsung.com>
上级 80a7f727
......@@ -63,16 +63,11 @@ resizer_calculate_line_length(u32 pix, int width, int height,
if (pix == MEDIA_BUS_FMT_UYVY8_2X8 ||
pix == MEDIA_BUS_FMT_SGRBG12_1X12) {
*line_len = width << 1;
} else if (pix == MEDIA_BUS_FMT_Y8_1X8 ||
pix == MEDIA_BUS_FMT_UV8_1X8) {
*line_len = width;
*line_len_c = width;
} else {
/* YUV 420 */
/* round width to upper 32 byte boundary */
*line_len = width;
*line_len_c = width;
}
/* adjust the line len to be a multiple of 32 */
*line_len += 31;
*line_len &= ~0x1f;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册