Lines Matching refs:result
20 uint32_t result; in bsec_main() local
25 result = bsec_read_otp(ret_otp_value, x2); in bsec_main()
29 result = bsec_program_otp(x3, x2); in bsec_main()
33 result = bsec_write_otp(x3, x2); in bsec_main()
37 result = bsec_read_otp(&tmp_data, x2); in bsec_main()
38 if (result != BSEC_OK) { in bsec_main()
42 result = bsec_shadow_register(x2); in bsec_main()
43 if (result != BSEC_OK) { in bsec_main()
47 result = bsec_read_otp(ret_otp_value, x2); in bsec_main()
48 if (result != BSEC_OK) { in bsec_main()
52 result = bsec_write_otp(tmp_data, x2); in bsec_main()
59 return (result == BSEC_OK) ? STM32_SMC_OK : STM32_SMC_FAILED; in bsec_main()