From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=192.55.52.120; helo=mga04.intel.com; envelope-from=chasel.chiu@intel.com; receiver=edk2-devel@lists.01.org Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 46C2A211B81AB for ; Wed, 16 Jan 2019 16:22:06 -0800 (PST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 16 Jan 2019 16:22:06 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,488,1539673200"; d="scan'208";a="126642201" Received: from cchiu4-mobl1.gar.corp.intel.com ([10.5.240.45]) by orsmga002.jf.intel.com with ESMTP; 16 Jan 2019 16:22:04 -0800 From: "Chasel, Chiu" To: edk2-devel@lists.01.org Cc: Michael A Kubacki , Jiewen Yao , Chasel Chiu Date: Thu, 17 Jan 2019 08:11:10 +0800 Message-Id: <20190117001110.10048-1-chasel.chiu@intel.com> X-Mailer: git-send-email 2.13.3.windows.1 Subject: [PATCH] MinPlatformPkg: Correct typo in INF X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Jan 2019 00:22:07 -0000 REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1468 SiliconPolicyInitLibNull.inf and SiliconPolicyUpdateLibNull.inf both had wrong BASE_NAME and LIBRARY_CLASS, so correct them to align with file naming and the purpose. Cc: Michael A Kubacki Cc: Jiewen Yao Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Chasel Chiu --- Platform/Intel/MinPlatformPkg/PlatformInit/Library/SiliconPolicyInitLibNull/SiliconPolicyInitLibNull.inf | 6 +++--- Platform/Intel/MinPlatformPkg/PlatformInit/Library/SiliconPolicyUpdateLibNull/SiliconPolicyUpdateLibNull.inf | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Platform/Intel/MinPlatformPkg/PlatformInit/Library/SiliconPolicyInitLibNull/SiliconPolicyInitLibNull.inf b/Platform/Intel/MinPlatformPkg/PlatformInit/Library/SiliconPolicyInitLibNull/SiliconPolicyInitLibNull.inf index 593d1490f1..ae696ccc90 100644 --- a/Platform/Intel/MinPlatformPkg/PlatformInit/Library/SiliconPolicyInitLibNull/SiliconPolicyInitLibNull.inf +++ b/Platform/Intel/MinPlatformPkg/PlatformInit/Library/SiliconPolicyInitLibNull/SiliconPolicyInitLibNull.inf @@ -1,7 +1,7 @@ ## @file # Component information file for Silicon Init Library # -# Copyright (c) 2017, Intel Corporation. All rights reserved.
+# Copyright (c) 2017 - 2019, Intel Corporation. All rights reserved.
# # This program and the accompanying materials are licensed and made available under # the terms and conditions of the BSD License which accompanies this distribution. @@ -15,11 +15,11 @@ [Defines] INF_VERSION = 0x00010005 - BASE_NAME = SiliconInitLibNull + BASE_NAME = SiliconPolicyInitLibNull FILE_GUID = 81B55810-E3DE-4E3E-8477-B8768232193A MODULE_TYPE = BASE VERSION_STRING = 1.0 - LIBRARY_CLASS = SiliconInitLib + LIBRARY_CLASS = SiliconPolicyInitLib [LibraryClasses] BaseLib diff --git a/Platform/Intel/MinPlatformPkg/PlatformInit/Library/SiliconPolicyUpdateLibNull/SiliconPolicyUpdateLibNull.inf b/Platform/Intel/MinPlatformPkg/PlatformInit/Library/SiliconPolicyUpdateLibNull/SiliconPolicyUpdateLibNull.inf index ab03602297..d2018881bb 100644 --- a/Platform/Intel/MinPlatformPkg/PlatformInit/Library/SiliconPolicyUpdateLibNull/SiliconPolicyUpdateLibNull.inf +++ b/Platform/Intel/MinPlatformPkg/PlatformInit/Library/SiliconPolicyUpdateLibNull/SiliconPolicyUpdateLibNull.inf @@ -1,7 +1,7 @@ ## @file # Component information file for Silicon Update Library # -# Copyright (c) 2017, Intel Corporation. All rights reserved.
+# Copyright (c) 2017 - 2019, Intel Corporation. All rights reserved.
# # This program and the accompanying materials are licensed and made available under # the terms and conditions of the BSD License which accompanies this distribution. @@ -15,11 +15,11 @@ [Defines] INF_VERSION = 0x00010005 - BASE_NAME = SiliconUpdateLibNull + BASE_NAME = SiliconPolicyUpdateLibNull FILE_GUID = 7D4AA651-D23B-42FC-ABE4-8A2FDF260B9F MODULE_TYPE = BASE VERSION_STRING = 1.0 - LIBRARY_CLASS = SiliconUpdateLib + LIBRARY_CLASS = SiliconPolicyUpdateLib [LibraryClasses] BaseLib -- 2.13.3.windows.1