Use accessor to read property serial numbers
Hide the implementation of the property structures by using an accessor. Change-Id: Ic604935882f6085e3d082baa651bad9bafe0a54a
This commit is contained in:
parent
8ab86c7865
commit
14c02f245e
1 changed files with 2 additions and 2 deletions
|
@ -553,7 +553,7 @@ int wifi_start_supplicant(int p2p_supported)
|
|||
*/
|
||||
pi = __system_property_find(supplicant_prop_name);
|
||||
if (pi != NULL) {
|
||||
serial = pi->serial;
|
||||
serial = __system_property_serial(pi);
|
||||
}
|
||||
#endif
|
||||
property_get("wifi.interface", primary_iface, WIFI_TEST_INTERFACE);
|
||||
|
@ -570,7 +570,7 @@ int wifi_start_supplicant(int p2p_supported)
|
|||
__system_property_read(pi, NULL, supp_status);
|
||||
if (strcmp(supp_status, "running") == 0) {
|
||||
return 0;
|
||||
} else if (pi->serial != serial &&
|
||||
} else if (__system_property_serial(pi) != serial &&
|
||||
strcmp(supp_status, "stopped") == 0) {
|
||||
return -1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue