Re: [PATCH v7 05/10] mbimmodem: sim: add support for querying IMSI with MBIMEx 3
Andres Salomon <[email protected]> Fri, 12 Dec 2025 04:13:07 -0500
| Newsgroups | dev.linux.lists.ofono |
|---|---|
| Message-ID | <[email protected]> |
On 11/28/25 12:36, Muhammad Asif wrote:
> This commit adds the ability to query IMSI with newer modems that use
> the MBIMEx 3 protocol.
> ---
> drivers/mbimmodem/sim.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/drivers/mbimmodem/sim.c b/drivers/mbimmodem/sim.c
> index 1e932b76..9df34121 100644
> --- a/drivers/mbimmodem/sim.c
> +++ b/drivers/mbimmodem/sim.c
> @@ -392,6 +392,8 @@ static void mbim_subscriber_ready_status_changed(struct mbim_message *message,
> char *imsi;
> char *iccid;
> uint32_t ready_info;
> + uint32_t ready_flags;
> + bool r;
>
> DBG("");
>
> @@ -430,6 +432,7 @@ static void mbim_subscriber_ready_status_cb(struct mbim_message *message,
> char *imsi;
> char *iccid;
> uint32_t ready_info;
> + uint32_t ready_flags;
> bool r;
>
> DBG("");
I think this is meant to be part of patch #3?