From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2607:f8b0:400e:c05::244; helo=mail-pg0-x244.google.com; envelope-from=heyi.guo@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-pg0-x244.google.com (mail-pg0-x244.google.com [IPv6:2607:f8b0:400e:c05::244]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id F0BEA2222C22F for ; Thu, 25 Jan 2018 23:58:07 -0800 (PST) Received: by mail-pg0-x244.google.com with SMTP id k68so6805296pga.3 for ; Fri, 26 Jan 2018 00:03:38 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=FIWpQfHJGTjPPQyzwTr5Je/0dfhw1AntySnNkmfEihA=; b=b3zbw20uBMeYq5Mws/dZswP+R+PfAseIA3Mj+MdYTNWatOtdU3IfRZ7QByvQ6WovIH Mts/fdx2a0kGc/495bqfvPOUtotK76y37D8hqxBOVcNdFeF+7BWG0z1ZWiC3G4YuazfS Pllc/FevzUiaSfZ+YgGitqdyqi94gZjhHVgZM= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=FIWpQfHJGTjPPQyzwTr5Je/0dfhw1AntySnNkmfEihA=; b=r97YcGCgEn/AGqB/AadW7z1MsANx8zRMkFFUePsBfvJ2USzAe/OkRQwE2U3xRWFNwk xIkY8oLS/4MLl6NLrZ7tsx569YE9tMY82Mp3qY6FhmHclA6YESshgXqkB4OLj9amZgTq ddM7ohnsPfjYwM+XsiJfXqmrYxDct7av+5gSoFsyz1bWh8dubUy1ajHnsDIP87y8Yii/ My6zmTKJStws+/ID9NwB5KMkOlYBp3VOSdsGX6l7L7QEVS+rhKX1+KVlIzviIik3SUNR Wy3uPHhxn7dwt+gboy1JOwDmXdDjvgbtVyaAtEfvU/5KXZ4FFXIlpqWblEuh8/sMy1l/ ekRA== X-Gm-Message-State: AKwxytctUxtw2aKrpK2IhqKdUh67jOcGZrrgKleSTYlESQllRbuYn90B YRxyFZRgCXbdCU8jcRtWCx4/Jw== X-Google-Smtp-Source: AH8x226x94O3gWDY4W2ndCYuf+wAb7UCteu3AVvD3iFathTaOAQm9M39Sg6aRyuaYT3QlbdT0/rorQ== X-Received: by 2002:a17:902:7488:: with SMTP id h8-v6mr4020563pll.164.1516953817989; Fri, 26 Jan 2018 00:03:37 -0800 (PST) Received: from localhost.localdomain ([120.31.149.194]) by smtp.gmail.com with ESMTPSA id k71sm18406091pfg.52.2018.01.26.00.03.25 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 26 Jan 2018 00:03:37 -0800 (PST) From: Ming Huang X-Google-Original-From: Ming Huang To: leif.lindholm@linaro.org, linaro-uefi@lists.linaro.org, edk2-devel@lists.01.org, graeme.gregory@linaro.org Cc: ard.biesheuvel@linaro.org, guoheyi@huawei.com, wanghuiqiang@huawei.com, huangming23@huawei.com, zhangjinsong2@huawei.com, mengfanrong@huawei.com, huangdaode@hisilicon.com, waip23@126.com, Heyi Guo Date: Fri, 26 Jan 2018 16:00:44 +0800 Message-Id: <1516953650-57980-10-git-send-email-huangming23@huawei.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1516953650-57980-1-git-send-email-huangming23@huawei.com> References: <1516953650-57980-1-git-send-email-huangming23@huawei.com> Subject: [PATCH edk2-platforms v2 09/15] Hisilicon/Smbios: Indicate use of ProcessorFamily2 in type 4 table X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jan 2018 07:58:08 -0000 modify processorFamily of type 4 to ProcessorFamilyIndicatorFamily2, indicator to obtain the processor family from the Processor Family 2 field. ProcessorFamily2 is already specified as ProcessorFamilyARM in the existing table. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Ming Huang Signed-off-by: Heyi Guo --- Silicon/Hisilicon/Drivers/Smbios/ProcessorSubClassDxe/ProcessorSubClass.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Silicon/Hisilicon/Drivers/Smbios/ProcessorSubClassDxe/ProcessorSubClass.c b/Silicon/Hisilicon/Drivers/Smbios/ProcessorSubClassDxe/ProcessorSubClass.c index 61473e8..c9903ba 100644 --- a/Silicon/Hisilicon/Drivers/Smbios/ProcessorSubClassDxe/ProcessorSubClass.c +++ b/Silicon/Hisilicon/Drivers/Smbios/ProcessorSubClassDxe/ProcessorSubClass.c @@ -125,7 +125,7 @@ SMBIOS_TABLE_TYPE4 mSmbiosProcessorTable[] = { }, 1, //Socket CentralProcessor, //ProcessorType - ProcessorFamilyOther, //ProcessorFamily + ProcessorFamilyIndicatorFamily2, //ProcessorFamily 2, //ProcessorManufacture { //ProcessorId { //Signature @@ -172,7 +172,7 @@ SMBIOS_TABLE_TYPE4 mSmbiosProcessorTable[] = { }, 1, //Socket CentralProcessor, //ProcessorType - ProcessorFamilyOther, //ProcessorFamily + ProcessorFamilyIndicatorFamily2, //ProcessorFamily 2, //ProcessorManufacture { //ProcessorId { //Signature -- 1.9.1