提交 ca7fc7e9 编写于 作者: D Dan Streetman 提交者: Herbert Xu

lib: correct 842 decompress for 32 bit

Avoid 64 bit mod operation, which won't work on 32 bit systems.
Simple subtraction can be used instead in this case.
Reported-By: NFengguang Wu <fengguang.wu@intel.com>
Signed-off-by: NDan Streetman <ddstreet@ieee.org>
Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
上级 42e8b0d7
...@@ -185,7 +185,7 @@ static int __do_index(struct sw842_param *p, u8 size, u8 bits, u64 fsize) ...@@ -185,7 +185,7 @@ static int __do_index(struct sw842_param *p, u8 size, u8 bits, u64 fsize)
/* this is where the current fifo is */ /* this is where the current fifo is */
u64 section = round_down(total, fsize); u64 section = round_down(total, fsize);
/* the current pos in the fifo */ /* the current pos in the fifo */
u64 pos = total % fsize; u64 pos = total - section;
/* if the offset is past/at the pos, we need to /* if the offset is past/at the pos, we need to
* go back to the last fifo section * go back to the last fifo section
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册