From 36f33982f161389a39a6f73bff5c77fbd2106efc Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Thu, 3 Dec 2015 10:33:41 -0600 Subject: gril: Remove g_ril_reply_oem_hook_strings --- gril/grilreply.c | 32 -------------------------------- gril/grilreply.h | 3 --- 2 files changed, 35 deletions(-) diff --git a/gril/grilreply.c b/gril/grilreply.c index e548c4ec..06e1b577 100644 --- a/gril/grilreply.c +++ b/gril/grilreply.c @@ -264,35 +264,3 @@ struct reply_oem_hook *g_ril_reply_oem_hook_raw(GRil *gril, end: return reply; } - -struct parcel_str_array *g_ril_reply_oem_hook_strings(GRil *gril, - const struct ril_msg *message) -{ - struct parcel rilp; - struct parcel_str_array *str_arr; - int i; - - g_ril_init_parcel(message, &rilp); - - str_arr = parcel_r_str_array(&rilp); - if (str_arr == NULL) { - ofono_error("%s: no strings", __func__); - goto out; - } - - g_ril_append_print_buf(gril, "{"); - - for (i = 0; i < str_arr->num_str; ++i) { - if (i + 1 == str_arr->num_str) - g_ril_append_print_buf(gril, "%s%s}", print_buf, - str_arr->str[i]); - else - g_ril_append_print_buf(gril, "%s%s, ", print_buf, - str_arr->str[i]); - } - - g_ril_print_response(gril, message); - -out: - return str_arr; -} diff --git a/gril/grilreply.h b/gril/grilreply.h index b63da9ab..abb85f65 100644 --- a/gril/grilreply.h +++ b/gril/grilreply.h @@ -47,9 +47,6 @@ void g_ril_reply_free_oem_hook(struct reply_oem_hook *oem_hook); struct reply_oem_hook *g_ril_reply_oem_hook_raw(GRil *gril, const struct ril_msg *message); -struct parcel_str_array *g_ril_reply_oem_hook_strings(GRil *gril, - const struct ril_msg *message); - #ifdef __cplusplus } #endif -- cgit v1.2.3