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:c01::244; helo=mail-pl0-x244.google.com; envelope-from=heyi.guo@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-pl0-x244.google.com (mail-pl0-x244.google.com [IPv6:2607:f8b0:400e:c01::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 9227C223AF828 for ; Fri, 2 Feb 2018 04:00:41 -0800 (PST) Received: by mail-pl0-x244.google.com with SMTP id o13so6021491pli.6 for ; Fri, 02 Feb 2018 04:06:19 -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=8plObo4XLBnM1mRMEHVQ4HPNa6fLc3RqE5JptMGXLe0=; b=eTVTwtok3DIIA+5Gd/smMyrQPyxnlBWuUU90GjSCHQb2RZVlXPTSY1mYc2XhZni/xq KZY3jcfwm0+BeN15lnA9+5UcQz+7VgFJgfa2CQfoJ184gvW/YwyjtM28wltxM288uOju qiqo4Vo4uDoyAnTT2JhaZp8mqdSrEQcLMGAXU= 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=8plObo4XLBnM1mRMEHVQ4HPNa6fLc3RqE5JptMGXLe0=; b=BCIqTTbk9p72QDj5gHhac1zwAAw03OsScDYnJjx1BVJWeA0l2Lf9GzqDq4RKdXCEnE rUeyRzn66JNa6Ye6+tcefyBwSVhI+kK4oTs9ceOUh7oz/ueV4s3xdcHYwjPYBUuC6QvD hM3FcVJn6SvIQgxTEzMJFLy/U4SWoEhJuCzr7rXQeut0b6Qoxw06EzSUKeJZnzshCqlV 2GqpC4D4V6dwdkP0zc5ZtY4IXTwAREV11B0lRRUm/x9UvovYgp03v/q4Xc2u9LFU78G5 yOy1xo/jVykbCoVDJzwEyGKNdmDNQlN7xVVF++gOKwnOj24alHtVUkVGxxWj6iy190oh relQ== X-Gm-Message-State: AKwxytduyERMdzhBXIHEBE9cqjaO6CLdK3p571Uwf6X1KGRV0mbGj08m AJHgo37YlwmpqXUg97aIQ7kA4w== X-Google-Smtp-Source: AH8x224eQ3Ftrdv3AA9cT2g+kK8+aqbIlVXjNrrYhUgwjs/kuhtImWQvZHXytIw5wzFHD4T8h/J4Tg== X-Received: by 2002:a17:902:678e:: with SMTP id g14-v6mr34072440plk.309.1517573179713; Fri, 02 Feb 2018 04:06:19 -0800 (PST) Received: from localhost.localdomain ([120.31.149.194]) by smtp.gmail.com with ESMTPSA id b8sm3673047pff.31.2018.02.02.04.06.16 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 02 Feb 2018 04:06:19 -0800 (PST) From: Heyi Guo 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, john.garry@huawei.com, waip23@126.com, Heyi Guo Date: Fri, 2 Feb 2018 20:05:37 +0800 Message-Id: <1517573143-11451-10-git-send-email-heyi.guo@linaro.org> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1517573143-11451-1-git-send-email-heyi.guo@linaro.org> References: <1517573143-11451-1-git-send-email-heyi.guo@linaro.org> Subject: [PATCH edk2-platforms v3 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, 02 Feb 2018 12:00:42 -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 Reviewed-by: Leif Lindholm Reviewed-by: Ard Biesheuvel --- 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