diff mbox series

qmimodem: Add support for "embedded" endpoints

Message ID 20240301172816.1703961-1-denkenz@gmail.com (mailing list archive)
State Accepted
Commit 342237b10b866ed388c8abaad987dfd7ef027247
Headers show
Series qmimodem: Add support for "embedded" endpoints | expand

Commit Message

Denis Kenzior March 1, 2024, 5:27 p.m. UTC
---
 drivers/qmimodem/gprs-context.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

patchwork-bot+ofono@kernel.org March 1, 2024, 8:20 p.m. UTC | #1
Hello:

This patch was applied to ofono.git (master)
by Denis Kenzior <denkenz@gmail.com>:

On Fri,  1 Mar 2024 11:27:57 -0600 you wrote:
> ---
>  drivers/qmimodem/gprs-context.c | 2 ++
>  1 file changed, 2 insertions(+)

Here is the summary with links:
  - qmimodem: Add support for "embedded" endpoints
    https://git.kernel.org/pub/scm/network/ofono/ofono.git/?id=342237b10b86

You are awesome, thank you!
diff mbox series

Patch

diff --git a/drivers/qmimodem/gprs-context.c b/drivers/qmimodem/gprs-context.c
index 46ba46c95139..f575c5e2e1be 100644
--- a/drivers/qmimodem/gprs-context.c
+++ b/drivers/qmimodem/gprs-context.c
@@ -403,6 +403,8 @@  static void qmi_gprs_context_bind_mux(struct ofono_gprs_context *gc)
 		endpoint_info.endpoint_type = QMI_DATA_ENDPOINT_TYPE_PCIE;
 	else if (!strcmp(bus, "usb"))
 		endpoint_info.endpoint_type = QMI_DATA_ENDPOINT_TYPE_HSUSB;
+	else if (!strcmp(bus, "embedded"))
+		endpoint_info.endpoint_type = QMI_DATA_ENDPOINT_TYPE_EMBEDDED;
 	else {
 		ofono_error("%s: Invalid 'Bus' value",
 				ofono_modem_get_path(modem));