提交 6bf67259 编写于 作者: S Simon Glass 提交者: Tom Rini

Use uint64_t instead of u64 in put_dec()

Use the correct type required by do_div().
Signed-off-by: NSimon Glass <sjg@chromium.org>
上级 19ea4678
......@@ -270,7 +270,7 @@ static char *put_dec_full(char *buf, unsigned q)
return buf;
}
/* No inlining helps gcc to use registers better */
static noinline char *put_dec(char *buf, u64 num)
static noinline char *put_dec(char *buf, uint64_t num)
{
while (1) {
unsigned rem;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册