* [PATCH] firmware: dmi_scan: Use lowercase letters for UUID
@ 2018-04-08 7:38 Jean Delvare
0 siblings, 0 replies; only message in thread
From: Jean Delvare @ 2018-04-08 7:38 UTC (permalink / raw)
To: LKML
RFC 4122 asks for letters a-f in UUID to be lowercase. Follow this
recommendation.
Suggested by Paul Dagnelie at:
https://savannah.nongnu.org/bugs/index.php?53569
Signed-off-by: Jean Delvare <jdelvare@suse.de>
---
drivers/firmware/dmi_scan.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- linux-4.16.orig/drivers/firmware/dmi_scan.c 2018-04-01 23:20:27.000000000 +0200
+++ linux-4.16/drivers/firmware/dmi_scan.c 2018-04-08 09:32:20.508719012 +0200
@@ -210,9 +210,9 @@ static void __init dmi_save_uuid(const s
* says that this is the defacto standard.
*/
if (dmi_ver >= 0x020600)
- sprintf(s, "%pUL", d);
+ sprintf(s, "%pUl", d);
else
- sprintf(s, "%pUB", d);
+ sprintf(s, "%pUb", d);
dmi_ident[slot] = s;
}
--
Jean Delvare
SUSE L3 Support
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2018-04-08 7:38 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-08 7:38 [PATCH] firmware: dmi_scan: Use lowercase letters for UUID Jean Delvare
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox