media: coda: do not reassign ctx->tiled_map_type in coda_s_fmt
authorPhilipp Zabel <p.zabel@pengutronix.de>
Fri, 23 Jun 2017 11:57:27 +0000 (07:57 -0400)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Wed, 19 Jul 2017 19:19:10 +0000 (15:19 -0400)
commit9c2a4559435e2915209fd9588253111ee1dc2f7a
tree3b747f64aabbf2ab07e59799178738fb0a9c8a25
parent462e8ce009cba0da6c636d245678a7f80d660769
media: coda: do not reassign ctx->tiled_map_type in coda_s_fmt

This smatch warning:

    coda/coda-common.c:706 coda_s_fmt() warn: missing break? reassigning 'ctx->tiled_map_type'

can be silenced by moving the ctx->tiled_map_type assignment into the
breakout condition. That way the field is not reassigned when falling
through to the next switch statement.

Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/platform/coda/coda-common.c