Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 17ba9810 authored by Vincent Abriou's avatar Vincent Abriou Committed by Benjamin Gaignard
Browse files

drm: sti: fix static checker warning in sti_awg_utils



The shift and the mask done on arg value is useless
since arg is null.

Signed-off-by: default avatarVincent Abriou <vincent.abriou@st.com>
parent 6dfca6b3
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -60,8 +60,6 @@ static int awg_generate_instr(enum opcode opcode,
				 * pixel. So we transform SKIP into SET
				 * instruction */
				opcode = SET;
				arg = (arg << 24) >> 24;
				arg &= (0x0ff);
				break;
			}