drm/sti: remove redundant sign extensions
authorRasmus Villemoes <linux@rasmusvillemoes.dk>
Fri, 16 Oct 2015 13:14:55 +0000 (15:14 +0200)
committerVincent Abriou <vincent.abriou@st.com>
Tue, 3 Nov 2015 12:04:55 +0000 (13:04 +0100)
commitcebd6fbeb2fc9e7c4f10f3656fe9f1ba863a8549
treeb3de83f31f2f55d9df62a572b608c368a9a903fd
parent4d5821a71ce9bed490e5a71987dc03f22e646039
drm/sti: remove redundant sign extensions

arg is long int, so arg = (arg << 22) >> 22 makes the upper 22 bits of
arg equal to bit 9 (or bit 41). But we then mask away all but bits 0-9, so
this is entirely redundant.

Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Reviewed-by: Vincent Abriou <vincent.abriou@st.com>
drivers/gpu/drm/sti/sti_awg_utils.c