From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mx.groups.io with SMTP id smtpd.web10.1041.1648250921590027422 for ; Fri, 25 Mar 2022 16:28:42 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=feySsw2P; spf=pass (domain: intel.com, ip: 192.55.52.93, mailfrom: judah.vang@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1648250922; x=1679786922; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=NX2G1Ir+zBU3rySiEqdb4GYp81qPzO1+UUZWhDgPVe0=; b=feySsw2PMuj7lmW4y5f5BzNCDkSxUeW8GPOZcTY34N8KxSR+TI5mTtro NxFpoz4/e9ZPyzpU43iIXEbFg1TV5wAq8vGXrewp2YeYDlKD+twVZxxWS Kgispf/0CQHASQHBG2pb3MFuLUFkPdmt/Ysac7DVMnNSQscIY0Vm+seXR Y85uNxfFcZxGgq/nNo3OC/nTRnmfQuoL3Kii+9z9m529n5Yx61TQoPLeW n5Ey0ByGDI6YWxaoTlOYLeft5Wjkb4dMN5rZgnwDGM40Qic2oI7BKHxZn sV/TA4Pq7fom6zkEp3kZaU0uDrsZSvOkTv1amZqMCaPJabAcHxGtiA1h4 A==; X-IronPort-AV: E=McAfee;i="6200,9189,10297"; a="256309522" X-IronPort-AV: E=Sophos;i="5.90,211,1643702400"; d="scan'208";a="256309522" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Mar 2022 16:28:42 -0700 X-IronPort-AV: E=Sophos;i="5.90,211,1643702400"; d="scan'208";a="638366566" Received: from jvang-mobl.amr.corp.intel.com ([10.212.95.18]) by fmsmga003-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Mar 2022 16:28:42 -0700 From: "Judah Vang" To: devel@edk2.groups.io Cc: Judah Vang , Jian J Wang , Jiewen Yao , Nishant C Mistry Subject: [PATCH v1 13/28] SecurityPkg: Fix GetVariableKey API Date: Fri, 25 Mar 2022 16:28:10 -0700 Message-Id: <20220325232825.2167-9-judah.vang@intel.com> X-Mailer: git-send-email 2.35.1.windows.2 In-Reply-To: <20220325232825.2167-1-judah.vang@intel.com> References: <20220325232825.2167-1-judah.vang@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2594 Fix GetVariableKey API to match changes in header files. Cc: Jian J Wang Cc: Jiewen Yao Cc: Nishant C Mistry Signed-off-by: Judah Vang --- SecurityPkg/Library/VariableKeyLibNull/VariableKeyLibNull.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SecurityPkg/Library/VariableKeyLibNull/VariableKeyLibNull.c b/SecurityPkg/Library/VariableKeyLibNull/VariableKeyLibNull.c index a08def767b5f..cfbad54ba106 100644 --- a/SecurityPkg/Library/VariableKeyLibNull/VariableKeyLibNull.c +++ b/SecurityPkg/Library/VariableKeyLibNull/VariableKeyLibNull.c @@ -1,7 +1,7 @@ /** @file Null version of VariableKeyLib for build purpose. Don't use it in real product. -Copyright (c) 2020, Intel Corporation. All rights reserved.
+Copyright (c) 2020 - 2022, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent **/ @@ -22,8 +22,8 @@ SPDX-License-Identifier: BSD-2-Clause-Patent EFI_STATUS EFIAPI GetVariableKey ( - OUT VOID **VariableKey, - IN OUT UINTN *VariableKeySize + OUT VOID *VariableKey, + IN UINTN VariableKeySize ) { ASSERT (FALSE); -- 2.26.2.windows.1