diff options
author | Loic Poulain <loic.poulain@linaro.org> | 2020-12-16 15:11:48 +0100 |
---|---|---|
committer | Loic Poulain <loic.poulain@linaro.org> | 2021-04-21 12:53:16 +0200 |
commit | 6db2e8f04da458488c374f1a6f6979ce7fe9b67d (patch) | |
tree | b79d29dfb2b11fa10f53a3df0a2db26dcc5473af /src/mm-port.h | |
parent | b1db6527cf9d4801e48dfe6e9fe8124532269159 (diff) |
base: Add support for wwan subsystem
Add support for the Linux wwan subsystem that started to expose
control channel as character devices (e.g. /dev/wwan0p1MBIM...).
Signed-off-by: Loic Poulain <loic.poulain@linaro.org>
Diffstat (limited to 'src/mm-port.h')
-rw-r--r-- | src/mm-port.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mm-port.h b/src/mm-port.h index 75595323..b5d58706 100644 --- a/src/mm-port.h +++ b/src/mm-port.h @@ -30,7 +30,8 @@ typedef enum { /*< underscore_name=mm_port_subsys >*/ MM_PORT_SUBSYS_UNIX, MM_PORT_SUBSYS_QRTR, MM_PORT_SUBSYS_RPMSG, - MM_PORT_SUBSYS_LAST = MM_PORT_SUBSYS_RPMSG /*< skip >*/ + MM_PORT_SUBSYS_WWAN, + MM_PORT_SUBSYS_LAST = MM_PORT_SUBSYS_WWAN /*< skip >*/ } MMPortSubsys; typedef enum { /*< underscore_name=mm_port_type >*/ |