[PATCH] rilmodem: update call direction from the isMT value

2020-04-05 Thread JongSeok Won
oFono cannot determines the call of direction when the voicecall is triggered in rilmodem --- drivers/rilmodem/voicecall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/rilmodem/voicecall.c b/drivers/rilmodem/voicecall.c index 13dc5071..6c169166 100644 ---

Re: [PATCH 1/2] netmon: support cell type LTE

2020-07-26 Thread JongSeok Won
-api.txt. Best Regards, JongSeok 2020년 7월 21일 (화) 오후 10:55, Denis Kenzior 님이 작성: > Hi JongSeok, > > On 7/20/20 3:40 AM, JongSeok Won wrote: > > --- > > include/netmon.h | 3 +++ > > src/netmon.c | 24 +++- > > 2 files changed, 26

[PATCH] rilmodem: set proto type during setting initial attach apn

2020-07-20 Thread JongSeok Won
Added the protocol type of initial attach apn depends on protocol type in LTE Atom. --- drivers/rilmodem/lte.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/rilmodem/lte.c b/drivers/rilmodem/lte.c index 61718961..b613d354 100644 --- a/drivers/rilmodem/lte.c +++

[PATCH 2/2] rilmodem: support cell type LTE for netmon

2020-07-20 Thread JongSeok Won
--- drivers/rilmodem/netmon.c | 50 +++ 1 file changed, 50 insertions(+) diff --git a/drivers/rilmodem/netmon.c b/drivers/rilmodem/netmon.c index 7dd3a562..da6428a7 100644 --- a/drivers/rilmodem/netmon.c +++ b/drivers/rilmodem/netmon.c @@ -109,6 +109,9 @@

[PATCH 1/2] netmon: support cell type LTE

2020-07-20 Thread JongSeok Won
--- include/netmon.h | 3 +++ src/netmon.c | 24 +++- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/include/netmon.h b/include/netmon.h index a99d6ca9..53f9d393 100644 --- a/include/netmon.h +++ b/include/netmon.h @@ -72,6 +72,9 @@ enum ofono_netmon_info

[PATCH] rilmodem: fix typo error in netmon.c

2020-07-20 Thread JongSeok Won
--- drivers/rilmodem/netmon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/rilmodem/netmon.c b/drivers/rilmodem/netmon.c index 7dd3a562..547ebccc 100644 --- a/drivers/rilmodem/netmon.c +++ b/drivers/rilmodem/netmon.c @@ -201,7 +201,7 @@ static int

[PATCHv2 3/3] doc: added PCI, TAC, SNR property in networkmonitor-api

2020-07-30 Thread JongSeok Won
--- doc/networkmonitor-api.txt | 17 - 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/doc/networkmonitor-api.txt b/doc/networkmonitor-api.txt index 1cc73d2c..e9018d72 100644 --- a/doc/networkmonitor-api.txt +++ b/doc/networkmonitor-api.txt @@ -118,7 +118,7 @@ uint16

[PATCHv2 2/3] rilmodem: support cell type LTE for netmon

2020-07-30 Thread JongSeok Won
--- drivers/rilmodem/netmon.c | 51 +++ 1 file changed, 51 insertions(+) diff --git a/drivers/rilmodem/netmon.c b/drivers/rilmodem/netmon.c index 547ebccc..9f3a1191 100644 --- a/drivers/rilmodem/netmon.c +++ b/drivers/rilmodem/netmon.c @@ -109,6 +109,9 @@

[PATCHv2 1/3] netmon: added PCI, TAC, SNR value

2020-07-30 Thread JongSeok Won
To support cell type LTE, the value of PCI, TAC, SNR is added --- include/netmon.h | 3 +++ src/netmon.c | 21 + 2 files changed, 24 insertions(+) diff --git a/include/netmon.h b/include/netmon.h index a99d6ca9..53f9d393 100644 --- a/include/netmon.h +++

[PATCH] build: require glib >= 2.60

2021-02-25 Thread JongSeok Won
g_utf8_validate_len((const char *)tlv + 2, len, NULL); ^~~ g_utf8_validate According to glib documentation, "g_utf8_validate_len" is supported since 2.60 So, I sent this patch. Regards, JongSeok Won --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2

Re: [PATCH] build: require glib >= 2.60

2021-03-08 Thread JongSeok Won
Hi, Denis I had a mistake while making patch. So, I'll re-send the patch of V2. Best regards JongSeok Won 2021년 3월 5일 (금) 오후 11:49, Denis Kenzior 님이 작성: > Hi, > > > -PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.32, dummy=yes, > > - AC_MSG_ERROR(GLib >= 2.32 is required)) >

[PATCH] build: require glib >= 2.60

2021-03-08 Thread JongSeok Won
g_utf8_validate_len() is support after glib 2.60 --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index d4efc8a8..f195c862 100644 --- a/configure.ac +++ b/configure.ac @@ -63,8 +63,8 @@ AC_CHECK_FUNC(signalfd, dummy=yes,

[PATCH] build: require glib >= 2.60

2021-02-16 Thread JongSeok Won
gt; return g_utf8_validate_len((const char *)tlv + 2, len, NULL); > ^~~ > g_utf8_validate > According to glib documentation, "g_utf8_validate_len" is supported since 2.60 So, I sent this patch. Regards, JongSeok Won --- configure.ac | 4 ++-- 1 f

[PATCH] rilmodem: fix handling both of SUCCESS AND FAILURE

2021-12-16 Thread JongSeok Won
Hi denis, Here is patch for mulfunctioning when failure of RIL Command, RIL_REQUEST_SET_UNSOL_CELL_INFO_LIST_RATE, is occurred. Best Regards, JongSeok --- drivers/rilmodem/netmon.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/rilmodem/netmon.c