* [PATCH] rilmodem: fix typo error in netmon.c
@ 2020-07-20 7:34 JongSeok Won
2020-07-21 13:43 ` Denis Kenzior
0 siblings, 1 reply; 2+ messages in thread
From: JongSeok Won @ 2020-07-20 7:34 UTC (permalink / raw)
To: ofono
[-- Attachment #1: Type: text/plain, Size: 647 bytes --]
---
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 process_cellinfo_list(struct ril_msg *message,
lac = (lac >= 0 && lac <= 65535) ? lac : -1;
cid = (cid >= 0 && cid <= 268435455) ? cid : -1;
- psc = (psc >= 0 && rssi <= 511) ? psc : -1;
+ psc = (psc >= 0 && psc <= 511) ? psc : -1;
rssi = (rssi >= 0 && rssi <= 31) ? rssi : -1;
ber = (ber >= 0 && ber <= 7) ? ber : -1;
--
2.17.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] rilmodem: fix typo error in netmon.c
2020-07-20 7:34 [PATCH] rilmodem: fix typo error in netmon.c JongSeok Won
@ 2020-07-21 13:43 ` Denis Kenzior
0 siblings, 0 replies; 2+ messages in thread
From: Denis Kenzior @ 2020-07-21 13:43 UTC (permalink / raw)
To: ofono
[-- Attachment #1: Type: text/plain, Size: 197 bytes --]
Hi JongSeok,
On 7/20/20 2:34 AM, JongSeok Won wrote:
> ---
> drivers/rilmodem/netmon.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
Applied, thanks.
Regards,
-Denis
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-07-21 13:43 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-07-20 7:34 [PATCH] rilmodem: fix typo error in netmon.c JongSeok Won
2020-07-21 13:43 ` Denis Kenzior
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox