Skip to content

Commit 45603f0

Browse files
committed
[all] pre-commit cleanup for v1.1.6
1 parent 42c189f commit 45603f0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

api/stse_device_management.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -360,15 +360,15 @@ stse_ReturnCode_t stse_put_i2c_parameters(
360360

361361
#ifdef STSE_CONF_STSAFE_A_SUPPORT
362362

363-
if (pSTSE == NULL) {
363+
if (pSTSE == NULL) {
364364
return STSE_SERVICE_HANDLER_NOT_INITIALISED;
365365
}
366366

367-
if (i2c_address > I2C_ADDR_MAX || idle_bus_time_to_standby > IDLE_BUS_DELAY_MAX) {
367+
if (i2c_address > I2C_ADDR_MAX || idle_bus_time_to_standby > IDLE_BUS_DELAY_MAX) {
368368
return STSE_SERVICE_INVALID_PARAMETER;
369369
}
370370

371-
/*Create new I2C parameters structure */
371+
/*Create new I2C parameters structure */
372372
stsafea_i2c_parameters_t i2c_param = {0};
373373
i2c_param.i2c_address = i2c_address;
374374
i2c_param.idle_bus_time_to_standby = idle_bus_time_to_standby;

services/stsafea/stsafea_hash.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ stse_ReturnCode_t stsafea_finish_hash(
179179

180180
/*- Perform Transfer*/
181181
ret = stsafea_frame_transfer(pSTSE,
182-
&CmdFrame,
183-
&RspFrame);
182+
&CmdFrame,
183+
&RspFrame);
184184

185185
if (ret == STSE_OK) {
186186
*pDigest_size = ARRAY_2B_SWAP_TO_UI16(digest_size_array);

0 commit comments

Comments
 (0)