From 7e426f96cc3324b1fd0bf28dd1c73e4cd9e1b855 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Wed, 18 Jan 2012 11:43:59 -0600 Subject: [PATCH] emulator: Use __ofono_atom_find --- src/emulator.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/emulator.c b/src/emulator.c index 1cfc296..262e782 100644 --- a/src/emulator.c +++ b/src/emulator.c @@ -336,15 +336,12 @@ static struct ofono_call *find_call_with_status(struct ofono_emulator *em, int status) { struct ofono_modem *modem = __ofono_atom_get_modem(em->atom); - struct ofono_atom *vc_atom; struct ofono_voicecall *vc; - vc_atom = __ofono_modem_find_atom(modem, OFONO_ATOM_TYPE_VOICECALL); - if (vc_atom == NULL) + vc = __ofono_atom_find(OFONO_ATOM_TYPE_VOICECALL, modem); + if (vc == NULL) return NULL; - vc = __ofono_atom_get_data(vc_atom); - return __ofono_voicecall_find_call_with_status(vc, status); } -- 2.7.4