diff options
| author | Tom Rini <[email protected]> | 2023-02-17 14:18:46 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-02-17 14:18:46 -0500 |
| commit | 1198b38ba980efed050c878c083607d997010e03 (patch) | |
| tree | 94338bc92230241c8415fe69fcd33ea3dcb40dcb /common | |
| parent | fcb5117da8876fc5b2bf941528301218d1be7b1c (diff) | |
| parent | 3106e475243e1e35df18d5086f7a5df8758bbda1 (diff) | |
Merge branch '2023-02-17-assorted-fixes'
- avb_verify bugfix, and cpsw_mdio bugfix
Diffstat (limited to 'common')
| -rw-r--r-- | common/avb_verify.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/common/avb_verify.c b/common/avb_verify.c index 0520a714556..48ba8db51e5 100644 --- a/common/avb_verify.c +++ b/common/avb_verify.c @@ -619,10 +619,11 @@ static int get_open_session(struct AvbOpsData *ops_data) memset(&arg, 0, sizeof(arg)); tee_optee_ta_uuid_to_octets(arg.uuid, &uuid); rc = tee_open_session(tee, &arg, 0, NULL); - if (!rc) { - ops_data->tee = tee; - ops_data->session = arg.session; - } + if (rc || arg.ret) + continue; + + ops_data->tee = tee; + ops_data->session = arg.session; } return 0; |
