Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754059AbbLVNxP (ORCPT ); Tue, 22 Dec 2015 08:53:15 -0500 Received: from mx1.redhat.com ([209.132.183.28]:54943 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752294AbbLVNxN (ORCPT ); Tue, 22 Dec 2015 08:53:13 -0500 From: Andrea Arcangeli To: Ivan Khoronzhuk , Matt Fleming Cc: Paolo Bonzini , Federico Simoncelli , linux-kernel@vger.kernel.org, Andrew Morton Subject: [PATCH 0/1] dmi_scan: uuid: fix endianess for smbios >= 0x206 Date: Tue, 22 Dec 2015 14:53:09 +0100 Message-Id: <1450792390-27853-1-git-send-email-aarcange@redhat.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 728 Lines: 25 Hello, this fixes https://bugzilla.kernel.org/show_bug.cgi?id=109731 Without this fix when this code runs: if (dmi_ver >= 0x020600) sprintf(s, "%pUL", d); else sprintf(s, "%pUB", d); dmi_ver is still set to the old 0x20X instead of 0x20X00 as intended after commit 95be58df74a5b21e5a78e45fddb2fd59112524c5. Andrea Arcangeli (1): dmi_scan: uuid: fix endianess for smbios >= 0x206 drivers/firmware/dmi_scan.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/