gril: Remove g_ril_request_change_passwd

This commit is contained in:
Denis Kenzior 2015-11-12 11:40:08 -06:00
parent a3e4a52583
commit a6dcf26df1
2 changed files with 0 additions and 24 deletions

View File

@ -73,7 +73,6 @@
/* RIL_Request* parameter counts */
#define SET_FACILITY_LOCK_PARAMS 5
#define CHANGE_SIM_PIN_PARAMS 3
/* RIL_FACILITY_LOCK parameters */
#define RIL_FACILITY_UNLOCK "0"
@ -659,23 +658,6 @@ error:
return FALSE;
}
void g_ril_request_change_passwd(GRil *gril,
const char *old_passwd,
const char *new_passwd,
const gchar *aid_str,
struct parcel *rilp)
{
parcel_init(rilp);
parcel_w_int32(rilp, CHANGE_SIM_PIN_PARAMS);
parcel_w_string(rilp, old_passwd);
parcel_w_string(rilp, new_passwd);
parcel_w_string(rilp, aid_str);
g_ril_append_print_buf(gril, "(old=%s,new=%s,aid=%s)",
old_passwd, new_passwd, aid_str);
}
void g_ril_request_dial(GRil *gril,
const struct ofono_phone_number *ph,
enum ofono_clir_option clir,

View File

@ -155,12 +155,6 @@ gboolean g_ril_request_pin_change_state(GRil *gril,
const struct req_pin_change_state *req,
struct parcel *rilp);
void g_ril_request_change_passwd(GRil *gril,
const char *old_passwd,
const char *new_passwd,
const gchar *aid_str,
struct parcel *rilp);
void g_ril_request_dial(GRil *gril,
const struct ofono_phone_number *ph,
enum ofono_clir_option clir,