cdma-connman: Use __ofono_atom_find

This commit is contained in:
Denis Kenzior 2012-01-18 11:54:42 -06:00
parent 15ef5861c5
commit cd3edbf984
1 changed files with 2 additions and 4 deletions

View File

@ -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) {