Commit abff7543 authored by Randolph Chung's avatar Randolph Chung Committed by Kyle McMartin
Browse files

[PARISC] Avoid use of floating point in the kernel



don't use *printf %f in the kernel, mm'kay?

Signed-off-by: default avatarRandolph Chung <tausq@parisc-linux.org>

Signed-off-by: default avatarKyle McMartin <kyle@parisc-linux.org>
parent e55fb3e7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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");