diff options
author | Dan Williams <dan@ioncontrol.co> | 2025-04-30 15:43:52 -0500 |
---|---|---|
committer | Dan Williams <dan@ioncontrol.co> | 2025-05-08 20:08:06 -0500 |
commit | ec5104c9a87a440bb791987ffe05e53bf235ae02 (patch) | |
tree | 48ff299064c675975c2b94c435cd5fef9466e508 /src/mm-bearer-mbim.c | |
parent | ef5cee3ab578c2fde8ca6cc636f10acfdb79f123 (diff) |
Move log parent and connection property binding to helper
Continues removing usage of MMBaseModem in a bunch of files
by splitting out bits of its usage to separate interfaces.
Signed-off-by: Dan Williams <dan@ioncontrol.co>
Diffstat (limited to 'src/mm-bearer-mbim.c')
-rw-r--r-- | src/mm-bearer-mbim.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mm-bearer-mbim.c b/src/mm-bearer-mbim.c index 33a1b8f1..eb30f78a 100644 --- a/src/mm-bearer-mbim.c +++ b/src/mm-bearer-mbim.c @@ -33,6 +33,7 @@ #include "mm-bearer-mbim.h" #include "mm-log-object.h" #include "mm-context.h" +#include "mm-bind.h" G_DEFINE_TYPE (MMBearerMbim, mm_bearer_mbim, MM_TYPE_BASE_BEARER) @@ -2019,6 +2020,7 @@ mm_bearer_mbim_new (MMBroadbandModemMbim *modem, * g_object_new() here */ bearer = g_object_new (MM_TYPE_BEARER_MBIM, MM_BASE_BEARER_MODEM, modem, + MM_BIND_TO, G_OBJECT (modem), MM_BASE_BEARER_CONFIG, config, NULL); |