mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
[PARISC] Avoid use of floating point in the kernel
don't use *printf %f in the kernel, mm'kay? Signed-off-by: Randolph Chung <tausq@parisc-linux.org> Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
This commit is contained in:
parent
e55fb3e787
commit
abff75439f
@ -536,7 +536,7 @@ pdcs_info_read(struct subsystem *entry, char *buf)
|
||||
|
||||
out += sprintf(out, "Memory tested: ");
|
||||
if ((result & 0x0F) < 0x0E)
|
||||
out += sprintf(out, "%.3f MB", 0.256*(1<<(result & 0x0F)));
|
||||
out += sprintf(out, "%d kB", (1<<(result & 0x0F))*256);
|
||||
else
|
||||
out += sprintf(out, "All");
|
||||
out += sprintf(out, "\n");
|
||||
|
Loading…
Reference in New Issue
Block a user