From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mx.groups.io with SMTP id smtpd.web11.17593.1678378012650322674 for ; Thu, 09 Mar 2023 08:06:53 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=aZaGaaYl; spf=pass (domain: intel.com, ip: 134.134.136.24, mailfrom: ashraf.ali.s@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1678378012; x=1709914012; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=/k1YVw4pci/Av1zEDI+5//PU0gowC2cTGOZTNYUW/Ds=; b=aZaGaaYl8ZRjCGX4e8EG0yW9bKA53PJhCgIHFmczknC+GSasfNEHJZzU lNoeoY1tllHMATEXd47KN6sJQtG9SUE8Sg+zTZUQ7i6ARbqvizLZsUtia 6qdwnsDWbKsWX3azM8UQQxHbQrGkYkoWeKWyFUIK3sssLhmNuu2e8ikZo MLnYoG6s8CMVDqDALK56YKmDRSTvkdz9FAf667Qs5TsGLUR72+1mDPfsp wY57+zDZVW10z45OKiVVjzI0gIUq/QlPeDADvAR9/teHyXokGVyin5rXl AgM+qJ+RBCsR4DWJCRzvRSuvL/cEU9R1DLZjdt+L3RILGw+wqaEHsov0+ Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10644"; a="338031498" X-IronPort-AV: E=Sophos;i="5.98,246,1673942400"; d="scan'208";a="338031498" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Mar 2023 08:06:16 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10644"; a="627414863" X-IronPort-AV: E=Sophos;i="5.98,246,1673942400"; d="scan'208";a="627414863" Received: from basfe006.gar.corp.intel.com ([10.66.244.178]) by orsmga003-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Mar 2023 08:06:14 -0800 From: "Ashraf Ali S" To: devel@edk2.groups.io Cc: Ashraf Ali S , Chasel Chiu , Nate DeSimone , Sai Chaganty , Star Zeng Subject: [PATCH] [IntelFsp2Pkg]: Fix GCC Compiler warning Date: Thu, 9 Mar 2023 21:35:57 +0530 Message-Id: <3828e699ee683093c89d1ea9fa81e6710062e65c.1678377799.git.ashraf.ali.s@intel.com> X-Mailer: git-send-email 2.38.1.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Function defination should match with declaration. [-Wlto-type-mismatch] Cc: Chasel Chiu Cc: Nate DeSimone Cc: Sai Chaganty Cc: Star Zeng Signed-off-by: Ashraf Ali S --- IntelFsp2Pkg/Library/BaseFspPlatformLib/FspPlatformNotify.c | 1 + 1 file changed, 1 insertion(+) diff --git a/IntelFsp2Pkg/Library/BaseFspPlatformLib/FspPlatformNotify.c b/IntelFsp2Pkg/Library/BaseFspPlatformLib/FspPlatformNotify.c index 795bb28c0f..a5a51c804c 100644 --- a/IntelFsp2Pkg/Library/BaseFspPlatformLib/FspPlatformNotify.c +++ b/IntelFsp2Pkg/Library/BaseFspPlatformLib/FspPlatformNotify.c @@ -296,6 +296,7 @@ FspTempRamExitDone2 ( **/ VOID +EFIAPI FspWaitForNotify ( VOID ) -- 2.38.1.windows.1