From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2a00:1450:4864:20::343; helo=mail-wm1-x343.google.com; envelope-from=ard.biesheuvel@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-wm1-x343.google.com (mail-wm1-x343.google.com [IPv6:2a00:1450:4864:20::343]) (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 B89AE211D3917 for ; Tue, 5 Mar 2019 05:32:59 -0800 (PST) Received: by mail-wm1-x343.google.com with SMTP id x10so2550167wmg.2 for ; Tue, 05 Mar 2019 05:32:59 -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 :mime-version:content-transfer-encoding; bh=vRRUxgXjudhw3F99t3LrF0zoEQOsTJzZNtrjn2iyHpc=; b=i0yW3E5fAz+Ua6qc93ahH0cCT1aT//dQcMeFOYrdmmI9VboyeagwRZM3NLPMcAENva 5TmwbleT5bMQ1cU3hbOXriy8e4lIWPsNDgY68Hq74bbkHm92DUeU/jJHdcjG5hc8xbfl InyYdzR7N33XVLQC5ZVd1zbA/QnN9DobySNf30CWNxxvHUlrPA1SsED0p0snKLxyR8ZV gelUHyrnh+WxM/gLf+GI14Wo9GqPMMEkbpymaZCH7+9CDmm9WSfRgVg9iL7o6Y8T/FIE i4Kej+EZnbu/GB7HAH0yUAKukxua1aCbx4jegwTOsyxaIee5EqbPQVSXeoaMYWIU9RJm tWNA== 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:mime-version:content-transfer-encoding; bh=vRRUxgXjudhw3F99t3LrF0zoEQOsTJzZNtrjn2iyHpc=; b=JhrQTXRerCLrz7bSIDpSKzFPIlRGluzQQvpzd5c6Afl6bagIukZ+HmJI2GzPjK3VAc Muw3z67ut6FxmeEFFPpSSMAod6f1n7YQ9eej4Oj4kaRch8i3zwihqqOTe1t2GdiFaD4F BUY12clU1C6w5N5B6qqiehHEeaad3pOh7piiIFLVGUz0fuc1YL6MDTLkKFlCsUwrwLp/ bwyZbJEjKXtOPHmTeOOle4966qMmcPsH4mmPBcKXcTvm6txyiMLKLCcyLF/+4TnX49Ot 08/YwfqachdDASmsoO372TKWt/QTGZZ9vnn2Jpmwzw+StsF0RI9iSDYCMP+cAJjJKI2P PhfA== X-Gm-Message-State: APjAAAU+5p+IyhJHqgFKQC7rt8lgeVOw/mZONCRqLS8HoFOYziCiolW8 iTojyCeh3H6nTZl0o8DmyWuwDWj3f6s= X-Google-Smtp-Source: APXvYqxA+zdKwzcY2FOVaWuwMPBPTlUYZ0rkeOYTVeHkcodhROmAQogMzPNMXeaP3uIj6cURFVy50A== X-Received: by 2002:a1c:480a:: with SMTP id v10mr2599867wma.57.1551792776738; Tue, 05 Mar 2019 05:32:56 -0800 (PST) Received: from localhost.localdomain (aputeaux-684-1-18-114.w90-86.abo.wanadoo.fr. [90.86.221.114]) by smtp.gmail.com with ESMTPSA id i4sm8370097wrw.19.2019.03.05.05.32.54 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 05 Mar 2019 05:32:55 -0800 (PST) From: Ard Biesheuvel To: edk2-devel@lists.01.org Cc: Ard Biesheuvel , Achin Gupta , Supreeth Venkatesh , Jiewen Yao , Leif Lindholm , Jagadeesh Ujja Date: Tue, 5 Mar 2019 14:32:39 +0100 Message-Id: <20190305133248.4828-2-ard.biesheuvel@linaro.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190305133248.4828-1-ard.biesheuvel@linaro.org> References: <20190305133248.4828-1-ard.biesheuvel@linaro.org> MIME-Version: 1.0 Subject: [PATCH 01/10] StandaloneMmPkg: drop redundant definition of gEfiMmConfigurationProtocolGuid 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: Tue, 05 Mar 2019 13:33:00 -0000 Content-Transfer-Encoding: 8bit gEfiMmConfigurationProtocolGuid is already defined in MdePkg, so drop the duplicate definition from StandaloneMmPkg. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Ard Biesheuvel --- StandaloneMmPkg/StandaloneMmPkg.dec | 3 --- 1 file changed, 3 deletions(-) diff --git a/StandaloneMmPkg/StandaloneMmPkg.dec b/StandaloneMmPkg/StandaloneMmPkg.dec index 34108376233d..0b5fbf9e1767 100644 --- a/StandaloneMmPkg/StandaloneMmPkg.dec +++ b/StandaloneMmPkg/StandaloneMmPkg.dec @@ -42,6 +42,3 @@ [Guids] [PcdsFeatureFlag] gStandaloneMmPkgTokenSpaceGuid.PcdStandaloneMmEnable|FALSE|BOOLEAN|0x00000001 -[Protocols] - gEfiMmConfigurationProtocolGuid = { 0xc109319, 0xc149, 0x450e, { 0xa3, 0xe3, 0xb9, 0xba, 0xdd, 0x9d, 0xc3, 0xa4 }} - -- 2.20.1