From cd3edbf98455fe6c7d9c3a1cb57e1b424eab1796 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Wed, 18 Jan 2012 11:54:42 -0600 Subject: cdma-connman: Use __ofono_atom_find --- src/cdma-connman.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/cdma-connman.c b/src/cdma-connman.c index 51143f76..0c8b0614 100644 --- a/src/cdma-connman.c +++ b/src/cdma-connman.c @@ -342,14 +342,12 @@ static ofono_bool_t network_registered(struct ofono_cdma_connman *cm) { int status; struct ofono_modem *modem = __ofono_atom_get_modem(cm->atom); - struct ofono_atom *atom = __ofono_modem_find_atom(modem, - OFONO_ATOM_TYPE_CDMA_NETREG); struct ofono_cdma_netreg *cdma_netreg; - if (atom == NULL) + cdma_netreg = __ofono_atom_find(OFONO_ATOM_TYPE_CDMA_NETREG, modem); + if (cdma_netreg == NULL) return FALSE; - cdma_netreg = __ofono_atom_get_data(atom); status = ofono_cdma_netreg_get_status(cdma_netreg); switch (status) { -- cgit v1.2.3