Commit 545e4006 authored by Harvey Harrison's avatar Harvey Harrison Committed by Linus Torvalds

lzo: use get/put_unaligned_* helpers

Signed-off-by: default avatarHarvey Harrison <harvey.harrison@gmail.com>
Acked-by: default avatarRichard Purdie <rpurdie@rpsys.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 8b5ac31e
...@@ -138,8 +138,7 @@ match: ...@@ -138,8 +138,7 @@ match:
t += 31 + *ip++; t += 31 + *ip++;
} }
m_pos = op - 1; m_pos = op - 1;
m_pos -= le16_to_cpu(get_unaligned( m_pos -= get_unaligned_le16(ip) >> 2;
(const unsigned short *)ip)) >> 2;
ip += 2; ip += 2;
} else if (t >= 16) { } else if (t >= 16) {
m_pos = op; m_pos = op;
...@@ -157,8 +156,7 @@ match: ...@@ -157,8 +156,7 @@ match:
} }
t += 7 + *ip++; t += 7 + *ip++;
} }
m_pos -= le16_to_cpu(get_unaligned( m_pos -= get_unaligned_le16(ip) >> 2;
(const unsigned short *)ip)) >> 2;
ip += 2; ip += 2;
if (m_pos == op) if (m_pos == op)
goto eof_found; goto eof_found;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment