* [PATCH] stemodem: Fix handling of local_release.
@ 2011-02-03 13:15 Marit Henriksen
2011-02-03 16:20 ` Denis Kenzior
0 siblings, 1 reply; 2+ messages in thread
From: Marit Henriksen @ 2011-02-03 13:15 UTC (permalink / raw)
To: ofono
[-- Attachment #1: Type: text/plain, Size: 2714 bytes --]
From: Marit Henriksen <marit.henriksen@stericsson.com>
- Reset local_release when call is disconnected.
- Change bitmap for affected types, ste_hangup is only called when
call state is Incoming, Dialing, Alerting or Active.
- Used macros instead of numbers when creating bitmaps.
---
drivers/stemodem/voicecall.c | 21 ++++++++++++++++-----
1 files changed, 16 insertions(+), 5 deletions(-)
diff --git a/drivers/stemodem/voicecall.c b/drivers/stemodem/voicecall.c
index 1c7c0bd..d8c296e 100644
--- a/drivers/stemodem/voicecall.c
+++ b/drivers/stemodem/voicecall.c
@@ -250,7 +250,12 @@ static void ste_answer(struct ofono_voicecall *vc,
static void ste_hangup(struct ofono_voicecall *vc,
ofono_voicecall_cb_t cb, void *data)
{
- ste_template("AT+CHUP", vc, ste_generic_cb, 0x3f, cb, data);
+ unsigned int active_dial_alert_or_incoming =
+ (0x1 << CALL_STATUS_ACTIVE) | (0x1 << CALL_STATUS_DIALING) |
+ (0x1 << CALL_STATUS_ALERTING) | (0x1 << CALL_STATUS_INCOMING);
+
+ ste_template("AT+CHUP", vc, ste_generic_cb,
+ active_dial_alert_or_incoming, cb, data);
}
static void ste_hold_all_active(struct ofono_voicecall *vc,
@@ -262,14 +267,17 @@ static void ste_hold_all_active(struct ofono_voicecall *vc,
static void ste_release_all_held(struct ofono_voicecall *vc,
ofono_voicecall_cb_t cb, void *data)
{
- unsigned int held_status = 0x1 << 1;
- ste_template("AT+CHLD=0", vc, ste_generic_cb, held_status, cb, data);
+ unsigned int held = 0x1 << CALL_STATUS_HELD;
+
+ ste_template("AT+CHLD=0", vc, ste_generic_cb, held, cb, data);
}
static void ste_set_udub(struct ofono_voicecall *vc,
ofono_voicecall_cb_t cb, void *data)
{
- unsigned int incoming_or_waiting = (0x1 << 4) | (0x1 << 5);
+ unsigned int incoming_or_waiting =
+ (0x1 << CALL_STATUS_INCOMING) | (0x1 << CALL_STATUS_WAITING);
+
ste_template("AT+CHLD=0", vc, ste_generic_cb, incoming_or_waiting,
cb, data);
}
@@ -277,7 +285,9 @@ static void ste_set_udub(struct ofono_voicecall *vc,
static void ste_release_all_active(struct ofono_voicecall *vc,
ofono_voicecall_cb_t cb, void *data)
{
- ste_template("AT+CHLD=1", vc, ste_generic_cb, 0x1, cb, data);
+ unsigned int active = 0x1 << CALL_STATUS_ACTIVE;
+
+ ste_template("AT+CHLD=1", vc, ste_generic_cb, active, cb, data);
}
static void ste_release_specific(struct ofono_voicecall *vc, int id,
@@ -472,6 +482,7 @@ static void ecav_notify(GAtResult *result, gpointer user_data)
ofono_voicecall_disconnected(vc, existing_call->id,
reason, NULL);
+ vd->local_release &= ~(1 << existing_call->id);
vd->calls = g_slist_remove(vd->calls, l->data);
break;
}
--
1.7.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] stemodem: Fix handling of local_release.
2011-02-03 13:15 [PATCH] stemodem: Fix handling of local_release Marit Henriksen
@ 2011-02-03 16:20 ` Denis Kenzior
0 siblings, 0 replies; 2+ messages in thread
From: Denis Kenzior @ 2011-02-03 16:20 UTC (permalink / raw)
To: ofono
[-- Attachment #1: Type: text/plain, Size: 544 bytes --]
Hi Marit,
On 02/03/2011 07:15 AM, Marit Henriksen wrote:
> From: Marit Henriksen <marit.henriksen@stericsson.com>
>
> - Reset local_release when call is disconnected.
> - Change bitmap for affected types, ste_hangup is only called when
> call state is Incoming, Dialing, Alerting or Active.
> - Used macros instead of numbers when creating bitmaps.
> ---
> drivers/stemodem/voicecall.c | 21 ++++++++++++++++-----
> 1 files changed, 16 insertions(+), 5 deletions(-)
>
Patch has been applied, thanks.
Regards,
-Denis
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-02-03 16:20 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-03 13:15 [PATCH] stemodem: Fix handling of local_release Marit Henriksen
2011-02-03 16:20 ` Denis Kenzior
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.