diff options
-rw-r--r-- | libpore/p9_stop_data_struct.H | 2 | ||||
-rw-r--r-- | libpore/p9_stop_util.C | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/libpore/p9_stop_data_struct.H b/libpore/p9_stop_data_struct.H index 2201021..d1b5054 100644 --- a/libpore/p9_stop_data_struct.H +++ b/libpore/p9_stop_data_struct.H @@ -35,7 +35,7 @@ #ifndef __STOP_DATA_STRUCT_ #define __STOP_DATA_STRUCT_ -#ifndef _AIX +#if !(defined _AIX) && !(defined __SKIBOOT__) #include <endian.h> #endif diff --git a/libpore/p9_stop_util.C b/libpore/p9_stop_util.C index 6fb8d67..c351b58 100644 --- a/libpore/p9_stop_util.C +++ b/libpore/p9_stop_util.C @@ -50,6 +50,7 @@ namespace stopImageSection */ static StopReturnCode_t isFusedMode( void* const i_pImage, bool* o_fusedMode ) { + uint64_t cpmrCheckWord; StopReturnCode_t l_rc = STOP_SAVE_SUCCESS; *o_fusedMode = false; @@ -66,7 +67,7 @@ static StopReturnCode_t isFusedMode( void* const i_pImage, bool* o_fusedMode ) } - uint64_t cpmrCheckWord = SWIZZLE_8_BYTE(pHomer->cpmrMagicWord); + cpmrCheckWord = SWIZZLE_8_BYTE(pHomer->cpmrMagicWord); cpmrCheckWord = cpmrCheckWord >> 32; if( CPMR_REGION_CHECK_WORD != cpmrCheckWord ) |