]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - lib/lzo/lzo1x_decompress.c
Marker depmod fix core kernel list
[linux-2.6-omap-h63xx.git] / lib / lzo / lzo1x_decompress.c
index 9dc7056e5520ff8a461cdea46258d1333de1b726..5dc6b29c1575f80903a3a9facc55642facbd0462 100644 (file)
@@ -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;