Change the memory speed unit from MHz to MT/s as advised by version 3.1.0 of the SMBIOS specification.
Signed-off-by: Jean Delvare <[email protected]> --- dmidecode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- dmidecode.orig/dmidecode.c 2017-04-06 14:49:18.246172245 +0200 +++ dmidecode/dmidecode.c 2017-04-06 15:11:44.818787121 +0200 @@ -2490,7 +2490,7 @@ static void dmi_memory_device_speed(u16 if (code == 0) printf(" Unknown"); else - printf(" %u MHz", code); + printf(" %u MT/s", code); } /* -- Jean Delvare SUSE L3 Support _______________________________________________ https://lists.nongnu.org/mailman/listinfo/dmidecode-devel
