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:32 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=h/90pjrt; 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=AF8BhEsIZG3cD+JQ30D7eZg5LWO/XIgNMyVDg8b+lYQ=; b=h/90pjrtbojLBKOJWvopXxZlcqQnSjwxNlGbSmDn1KvBkNQemCKeuEUI ejSoIHmlDGDDWNkfHJXlHd/9EQVuN+A2cU9oG149BBB9FxrO7qX+uUSyt we0CpM3fNOss05QFRZk2ho15lWNhInoPNaEzu6tMHvzwL6x5hhUePkxuc VfFFoE/p3ZOIRelZNANvf1qmVJnYqcuWXjEDU6xKM+srrYAuzCZd8MdeR 1UkuXKowpfR3LuhcdtANJcE4uYOyHFg3biJnLL7GiocJE7fZeRAaNU9F5 hZ8A3zSzRCKqxe+O17WgaonoomVqexdDSeUQzMipPeVJD/I8lpbo6HtuN Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10635"; a="399103047" X-IronPort-AV: E=Sophos;i="5.98,223,1673942400"; d="scan'208";a="399103047" 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:30 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10635"; a="706832931" X-IronPort-AV: E=Sophos;i="5.98,223,1673942400"; d="scan'208";a="706832931" 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:30 -0800 From: "Nate DeSimone" To: devel@edk2.groups.io Cc: Nate DeSimone , Andrew Fish , Ray Ni , Michael D Kinney , Chasel Chiu Subject: [PATCH v1] EmulatorPkg: Fix misspelling Date: Tue, 28 Feb 2023 20:55:20 -0800 Message-Id: <20230301045524.1044-3-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 pased should be passed. Cc: Andrew Fish Cc: Ray Ni Cc: Michael D Kinney Cc: Chasel Chiu Signed-off-by: Nate DeSimone --- EmulatorPkg/Unix/Host/Host.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EmulatorPkg/Unix/Host/Host.c b/EmulatorPkg/Unix/Host/Host.c index 1f29dd00a3..42856dbf5a 100644 --- a/EmulatorPkg/Unix/Host/Host.c +++ b/EmulatorPkg/Unix/Host/Host.c @@ -1,6 +1,6 @@ /*++ @file -Copyright (c) 2006 - 2022, Intel Corporation. All rights reserved.
+Copyright (c) 2006 - 2023, Intel Corporation. All rights reserved.
Portions copyright (c) 2008 - 2011, Apple Inc. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent @@ -136,7 +136,7 @@ main ( FirmwareVolumesStr = (CHAR16 *)PcdGetPtr (PcdEmuFirmwareVolume); // - // PPIs pased into PEI_CORE + // PPIs passed into PEI_CORE // SecEmuThunkPpi = AllocateZeroPool (sizeof (EMU_THUNK_PPI) + FixedPcdGet32 (PcdPersistentMemorySize)); if (SecEmuThunkPpi == NULL) { -- 2.30.2