Re: [PATCH 3/4] qmi: sim: implement lock(LockPin method)
Denis Kenzior <[email protected]>
| Newsgroups | dev.linux.lists.ofono |
|---|---|
| Message-ID | <[email protected]> |
Hi Ivo,
On 11/23/24 3:05 AM, Ivaylo Dimitrov wrote:
> ---
> drivers/qmimodem/sim.c | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++
> drivers/qmimodem/uim.h | 1 +
> 2 files changed, 64 insertions(+)
>
<snip>
> +
> + switch (passwd_type) {
> + case OFONO_SIM_PASSWORD_SIM_PIN:
> + pin_id = 0x01;
> + break;
> + case OFONO_SIM_PASSWORD_SIM_PIN2:
> + pin_id = 0x02;
> + break;
> + default:
> + CALLBACK_WITH_CME_ERROR(cb, 4, cbd->data);
You forgot to add l_free(cbd) here, so I amended this commit to do that
Regards,
-Denis