From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mx.groups.io with SMTP id smtpd.web11.15127.1677646532388026513 for ; Tue, 28 Feb 2023 20:55:33 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=TcBNT+yC; spf=pass (domain: intel.com, ip: 134.134.136.100, mailfrom: nathaniel.l.desimone@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1677646532; x=1709182532; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=QuMnlhwZ3ZqskUthceAaht74QswXSQ44zkS3cnTi65A=; b=TcBNT+yC4qP2Kt92TxRt6c8llkglkXkd/C9Ej6ORVy9a1vTTVnK5Z9lK 7VkBW8nU0VQHNKvfzr6Pji0jZ18RyYTwANLoaZ5PqO0462ST6madveFKv 6/CMgfBfQYqbLdy8UN8i7jbkiqRtGy+YAA2LU1nF9OpKTmNG1h0Lp1504 V72Ocobmdnq/E2LzNk45dUm3mZiuDIkN88XNH3LAVWBIM3NoH+P98Fcjg b8MSME8eon5zcmYIdiM5fYp9yQo3VXR++tzkU+oba4MJrAHggNA5SaSvz bzaCaXvyVlezFA9LVJ255/XIhiCyj5q5zPf3KfIcKTAuF7WRXa+btvndd Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10635"; a="399103055" X-IronPort-AV: E=Sophos;i="5.98,223,1673942400"; d="scan'208";a="399103055" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Feb 2023 20:55:31 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10635"; a="706832943" X-IronPort-AV: E=Sophos;i="5.98,223,1673942400"; d="scan'208";a="706832943" Received: from nldesimo-desk.amr.corp.intel.com ([10.24.12.177]) by orsmga001-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Feb 2023 20:55:31 -0800 From: "Nate DeSimone" To: devel@edk2.groups.io Cc: Nate DeSimone , Jian J Wang , Liming Gao , Michael D Kinney , Dandan Bi Subject: [PATCH v1] MdeModulePkg: Fix misspelling Date: Tue, 28 Feb 2023 20:55:24 -0800 Message-Id: <20230301045524.1044-7-nathaniel.l.desimone@intel.com> X-Mailer: git-send-email 2.39.2.windows.1 In-Reply-To: <20230301045524.1044-1-nathaniel.l.desimone@intel.com> References: <20230301045524.1044-1-nathaniel.l.desimone@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Nate DeSimone confroms should be conforms. Signed-off-by: Nate DeSimone Cc: Jian J Wang Cc: Liming Gao Cc: Michael D Kinney Cc: Dandan Bi --- MdeModulePkg/Core/DxeIplPeim/Ia32/DxeLoadFunc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MdeModulePkg/Core/DxeIplPeim/Ia32/DxeLoadFunc.c b/MdeModulePkg/Core/DxeIplPeim/Ia32/DxeLoadFunc.c index fdeaaa39d8..77fb6b8ff9 100644 --- a/MdeModulePkg/Core/DxeIplPeim/Ia32/DxeLoadFunc.c +++ b/MdeModulePkg/Core/DxeIplPeim/Ia32/DxeLoadFunc.c @@ -1,7 +1,7 @@ /** @file Ia32-specific functionality for DxeLoad. -Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.
+Copyright (c) 2006 - 2023, Intel Corporation. All rights reserved.
Copyright (c) 2017, AMD Incorporated. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent @@ -279,7 +279,7 @@ HandOffToDxeCore ( if (FeaturePcdGet (PcdDxeIplSwitchToLongMode)) { // // Compute the top of the stack we were allocated, which is used to load X64 dxe core. - // Pre-allocate a 32 bytes which confroms to x64 calling convention. + // Pre-allocate a 32 bytes which conforms to x64 calling convention. // // The first four parameters to a function are passed in rcx, rdx, r8 and r9. // Any further parameters are pushed on the stack. Furthermore, space (4 * 8bytes) for the -- 2.30.2