@@ -44,7 +44,6 @@ stse_ReturnCode_t stse_get_ecc_key_slots_count(
4444stse_ReturnCode_t stse_get_ecc_key_table_info (
4545 stse_Handler_t * pSTSE ,
4646 PLAT_UI8 private_key_slot_count ,
47- PLAT_UI8 * pChange_right ,
4847 PLAT_UI16 * pGlobal_usage_limit ,
4948 stsafea_private_key_slot_information_t * private_key_table_info ) {
5049 stse_ReturnCode_t ret ;
@@ -57,15 +56,14 @@ stse_ReturnCode_t stse_get_ecc_key_table_info(
5756 return (STSE_API_INVALID_PARAMETER );
5857 }
5958
60- ret = stsafea_query_private_key_table (pSTSE , private_key_slot_count , pChange_right , pGlobal_usage_limit , private_key_table_info );
59+ ret = stsafea_query_private_key_table (pSTSE , private_key_slot_count , pGlobal_usage_limit , private_key_table_info );
6160
6261 return ret ;
6362}
6463
6564stse_ReturnCode_t stse_get_ecc_key_slot_info (
6665 stse_Handler_t * pSTSE ,
6766 PLAT_UI8 private_key_slot_number ,
68- PLAT_UI8 * pChange_right ,
6967 PLAT_UI16 * pGlobal_usage_limit ,
7068 stsafea_private_key_slot_information_t * private_key_slot_info ) {
7169 stse_ReturnCode_t ret ;
@@ -85,7 +83,7 @@ stse_ReturnCode_t stse_get_ecc_key_slot_info(
8583
8684 stsafea_private_key_slot_information_t private_key_table_info [private_key_slot_count ];
8785
88- ret = stsafea_query_private_key_table (pSTSE , private_key_slot_count , pChange_right , pGlobal_usage_limit , private_key_table_info );
86+ ret = stsafea_query_private_key_table (pSTSE , private_key_slot_count , pGlobal_usage_limit , private_key_table_info );
8987
9088 if (ret != STSE_OK ) {
9189 return (ret );
0 commit comments