Skip to content

Commit

Permalink
I/O Cen typedef fix, Dccal Warnings Update, Removed Unused Regs
Browse files Browse the repository at this point in the history
Change-Id: I2d002179db7b475c8f5784f6fa22fae8f14aebdd
Original-Change-Id: I5bc7068c3d389148b8f08f232538c86f2b03adba
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/40658
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Gary A. Peterson <garyp@us.ibm.com>
Dev-Ready: Brent Wieman <bwieman@us.ibm.com>
Reviewed-by: Brent Wieman <bwieman@us.ibm.com>
Reviewed-by: Richard J. Knight <rjknight@us.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/45325
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Christian R. Geddes <crgeddes@us.ibm.com>
  • Loading branch information
steffenchris authored and crgeddes committed Aug 30, 2017
1 parent 575afef commit 13edc6f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Expand Up @@ -64,7 +64,7 @@
//------------------------------------------------------------------------------

// HWP entry point, comments in header
fapi2::ReturnCode p9_io_cen_scominit( const CEN_TGT& i_target )
fapi2::ReturnCode p9_io_cen_scominit(const CEN_TGT& i_tgt)
{
// mark HWP entry
FAPI_INF("p9_io_cen_scominit: Entering...");
Expand Down
Expand Up @@ -52,7 +52,7 @@
typedef fapi2::Target<fapi2::TARGET_TYPE_MEMBUF_CHIP> CEN_TGT;

// function pointer typedef definition for HWP call support
typedef fapi2::ReturnCode (*p9_io_cen_scominit_FP_t)(const CEN_TGT& i_target);
typedef fapi2::ReturnCode (*p9_io_cen_scominit_FP_t)(const CEN_TGT&);

extern "C" {

Expand All @@ -65,12 +65,12 @@ extern "C" {
*
* Should be called for all valid/connected OBUS endpoints
*
* @param[in] i_target Reference to CEN chiplet target
* @param[in] i_tgt Reference to CEN chiplet target
* - p9.cen.scom.initfile
*
* @return FAPI2_RC_SUCCESS on success, error otherwise
*/
fapi2::ReturnCode p9_io_cen_scominit(const CEN_TGT& i_target);
fapi2::ReturnCode p9_io_cen_scominit(const CEN_TGT& i_tgt);


} // extern "C"
Expand Down
2 changes: 1 addition & 1 deletion src/import/chips/p9/procedures/hwp/io/p9_io_dmi_dccal.H
Expand Up @@ -43,7 +43,7 @@
#include <fapi2.H>

typedef fapi2::Target<fapi2::TARGET_TYPE_DMI> DMI_TGT;
typedef fapi2::ReturnCode (*p9_io_dmi_dccal_FP_t)(const DMI_TGT);
typedef fapi2::ReturnCode (*p9_io_dmi_dccal_FP_t)(const DMI_TGT&);

extern "C"
{
Expand Down

0 comments on commit 13edc6f

Please sign in to comment.