lzo: fix typo in decompressor

Shift of a LE value seems strange, probably meant to shift the cpu-order
variable as in the prvious section of the switch statement.

Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Acked-by: Richard Purdie <rpurdie@rpsys.net>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Harvey Harrison and committed by Linus Torvalds a1e58bbd f17520e1

+1 -1
+1 -1
lib/lzo/lzo1x_decompress.c
··· 158 158 t += 7 + *ip++; 159 159 } 160 160 m_pos -= le16_to_cpu(get_unaligned( 161 - (const unsigned short *)ip) >> 2); 161 + (const unsigned short *)ip)) >> 2; 162 162 ip += 2; 163 163 if (m_pos == op) 164 164 goto eof_found;