From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 857831A1E60 for ; Mon, 10 Oct 2016 19:15:44 -0700 (PDT) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga102.fm.intel.com with ESMTP; 10 Oct 2016 19:15:44 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,327,1473145200"; d="scan'208";a="771124072" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by FMSMGA003.fm.intel.com with ESMTP; 10 Oct 2016 19:15:44 -0700 Received: from fmsmsx158.amr.corp.intel.com (10.18.116.75) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.248.2; Mon, 10 Oct 2016 19:15:44 -0700 Received: from shsmsx152.ccr.corp.intel.com (10.239.6.52) by fmsmsx158.amr.corp.intel.com (10.18.116.75) with Microsoft SMTP Server (TLS) id 14.3.248.2; Mon, 10 Oct 2016 19:15:43 -0700 Received: from shsmsx104.ccr.corp.intel.com ([169.254.5.101]) by SHSMSX152.ccr.corp.intel.com ([169.254.6.95]) with mapi id 14.03.0248.002; Tue, 11 Oct 2016 10:15:42 +0800 From: "Ni, Ruiyu" To: "Gao, Liming" , "edk2-devel@lists.01.org" Thread-Topic: [Patch] DuetPkg DxeIpl and EfiLdr: Add the missing EFIAPI for the function Thread-Index: AQHSI2EVs1Lq/YiIOEiStOO8i+DP16Cig+rw Date: Tue, 11 Oct 2016 02:15:41 +0000 Message-ID: <734D49CCEBEEF84792F5B80ED585239D58E17C4C@SHSMSX104.ccr.corp.intel.com> References: <1476150295-7112-1-git-send-email-liming.gao@intel.com> In-Reply-To: <1476150295-7112-1-git-send-email-liming.gao@intel.com> Accept-Language: en-US, zh-CN X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [Patch] DuetPkg DxeIpl and EfiLdr: Add the missing EFIAPI for the function X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Oct 2016 02:15:44 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Ruiyu Ni > -----Original Message----- > From: Gao, Liming > Sent: Tuesday, October 11, 2016 9:45 AM > To: edk2-devel@lists.01.org > Cc: Ni, Ruiyu > Subject: [Patch] DuetPkg DxeIpl and EfiLdr: Add the missing EFIAPI for th= e > function >=20 > The function with the variable parameters should have EFIAPI. >=20 > Cc: Ruiyu Ni > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Liming Gao > --- > DuetPkg/DxeIpl/Debug.c | 1 + > DuetPkg/DxeIpl/Debug.h | 1 + > DuetPkg/EfiLdr/Debug.c | 1 + > DuetPkg/EfiLdr/Debug.h | 1 + > 4 files changed, 4 insertions(+) >=20 > diff --git a/DuetPkg/DxeIpl/Debug.c b/DuetPkg/DxeIpl/Debug.c index > 1cb7e39..800f008 100644 > --- a/DuetPkg/DxeIpl/Debug.c > +++ b/DuetPkg/DxeIpl/Debug.c > @@ -52,6 +52,7 @@ ClearScreen ( > } >=20 > VOID > +EFIAPI > PrintString ( > IN CONST CHAR8 *FormatString, > ... > diff --git a/DuetPkg/DxeIpl/Debug.h b/DuetPkg/DxeIpl/Debug.h index > 7fcad26..81bb826 100644 > --- a/DuetPkg/DxeIpl/Debug.h > +++ b/DuetPkg/DxeIpl/Debug.h > @@ -27,6 +27,7 @@ PrintHeader ( > ); >=20 > VOID > +EFIAPI > PrintString ( > IN CONST CHAR8 *FormatString, > ... > diff --git a/DuetPkg/EfiLdr/Debug.c b/DuetPkg/EfiLdr/Debug.c index > 84b2772..0727292 100644 > --- a/DuetPkg/EfiLdr/Debug.c > +++ b/DuetPkg/EfiLdr/Debug.c > @@ -49,6 +49,7 @@ ClearScreen ( > } >=20 > VOID > +EFIAPI > PrintString ( > IN CONST CHAR8 *FormatString, > ... > diff --git a/DuetPkg/EfiLdr/Debug.h b/DuetPkg/EfiLdr/Debug.h index > f6aa7a2..4252f31 100644 > --- a/DuetPkg/EfiLdr/Debug.h > +++ b/DuetPkg/EfiLdr/Debug.h > @@ -27,6 +27,7 @@ PrintHeader ( > ); >=20 > VOID > +EFIAPI > PrintString ( > IN CONST CHAR8 *FormatString, > ... > -- > 2.8.0.windows.1