diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-07-25 01:45:27 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-25 10:53:26 -0700 |
commit | 545e400619b24b6b17b7f1f1e838e9ff6d036949 (patch) | |
tree | 43441e2ad84046524508e0eead0bd09ddc9ed76e /lib/lzo/lzo1x_decompress.c | |
parent | 8b5ac31e27135a6f2c210c40d03bf8f1b3a86b77 (diff) | |
download | kernel_samsung_crespo-545e400619b24b6b17b7f1f1e838e9ff6d036949.zip kernel_samsung_crespo-545e400619b24b6b17b7f1f1e838e9ff6d036949.tar.gz kernel_samsung_crespo-545e400619b24b6b17b7f1f1e838e9ff6d036949.tar.bz2 |
lzo: use get/put_unaligned_* helpers
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Acked-by: Richard Purdie <rpurdie@rpsys.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib/lzo/lzo1x_decompress.c')
-rw-r--r-- | lib/lzo/lzo1x_decompress.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/lzo/lzo1x_decompress.c b/lib/lzo/lzo1x_decompress.c index 77f0f9b..5dc6b29 100644 --- a/lib/lzo/lzo1x_decompress.c +++ b/lib/lzo/lzo1x_decompress.c @@ -138,8 +138,7 @@ match: t += 31 + *ip++; } m_pos = op - 1; - m_pos -= le16_to_cpu(get_unaligned( - (const unsigned short *)ip)) >> 2; + m_pos -= get_unaligned_le16(ip) >> 2; ip += 2; } else if (t >= 16) { m_pos = op; @@ -157,8 +156,7 @@ match: } t += 7 + *ip++; } - m_pos -= le16_to_cpu(get_unaligned( - (const unsigned short *)ip)) >> 2; + m_pos -= get_unaligned_le16(ip) >> 2; ip += 2; if (m_pos == op) goto eof_found; |