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.web10.15151.1677646531793211118 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=oGBLrfKK; 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=vKYRzyvuvGEcRTrL6JsmeuwneKlsBVgY6eea02WLTF4=; b=oGBLrfKKwt1xeFPXxExd2d3qkoxVu0pVJJeMui1JNqIK+2vz6RaC6cTk 6QzJTsbAhaPZr6gqUv9eVFPqNTAv6iQtnMyE+k3I1D0y4hJyzFpWVMae1 b6K55u7ZxdjkUH8TkkUYtIFIr/fiVipPXvTJ6svRKA/S73pTQxMWCLqeU ktxnmzGVhBS7mnKtx/Ts24xyC5ufIoI96/BJLP8hCRetn11ZDvxs3BIfy 9rZ8PDmKAfwAHj7nW1tnxpomf4HH80wjfp1pHMiGqOgssj3Q7V/WceJQq eweTk2G8cuW1Bxlu1IqLdSTrsvfSVqz0SfI5HEEOCDcQETvPgRBaX/Hnn A==; X-IronPort-AV: E=McAfee;i="6500,9779,10635"; a="399103045" X-IronPort-AV: E=Sophos;i="5.98,223,1673942400"; d="scan'208";a="399103045" 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="706832928" X-IronPort-AV: E=Sophos;i="5.98,223,1673942400"; d="scan'208";a="706832928" 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: Delete EMU_IO_THUNK_PROTOCO_GUID Date: Tue, 28 Feb 2023 20:55:19 -0800 Message-Id: <20230301045524.1044-2-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 Delete this macro because: 1. Nothing uses it. 2. It is misspelled. 3. It is a EDK I style GUID definition which is redundant with an existing EDK II style GUID definition. Cc: Andrew Fish Cc: Ray Ni Cc: Michael D Kinney Cc: Chasel Chiu Signed-off-by: Nate DeSimone --- EmulatorPkg/Include/Protocol/EmuIoThunk.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/EmulatorPkg/Include/Protocol/EmuIoThunk.h b/EmulatorPkg/Include/Protocol/EmuIoThunk.h index b6da635177..5f025c0e3c 100644 --- a/EmulatorPkg/Include/Protocol/EmuIoThunk.h +++ b/EmulatorPkg/Include/Protocol/EmuIoThunk.h @@ -2,6 +2,7 @@ Emulator Thunk to abstract OS services from pure EFI code Copyright (c) 2010 - 2011, Apple Inc. All rights reserved.
+ Copyright (c) 2023, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent @@ -10,9 +11,6 @@ #ifndef __EMU_IO_THUNK__ #define __EMU_IO_THUNK__ -#define EMU_IO_THUNK_PROTOCO_GUID \ - { 0x453368F6, 0x7C85, 0x434A, { 0xA9, 0x8A, 0x72, 0xD1, 0xB7, 0xFF, 0xA9, 0x26 } } - typedef struct _EMU_IO_THUNK_PROTOCOL EMU_IO_THUNK_PROTOCOL; typedef -- 2.30.2