Commit 3553a99cc49bd51b85eef9bf1526677c3ccab92b

Authored by Ye Li
1 parent fe324483b4

MLK-20240-4 pxp: Fix missing break in switch

Fix coverity issue CID 3411367: Missing break in switch (MISSING_BREAK)
unterminated_case: The case for value 1U is not terminated by a 'break' statement.

Signed-off-by: Ye Li <ye.li@nxp.com>

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

drivers/video/mxc_pxp.c
... ... @@ -56,6 +56,7 @@
56 56 case FMT_YUYV:
57 57 fmt_ctrl = BV_PXP_PS_CTRL_FORMAT__UYVY1P422;
58 58 need_swap = 1;
  59 + break;
59 60 default:
60 61 fmt_ctrl = 0;
61 62 }