From 0e977b26f4478c239aa8885e474c28bbca16120b Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski Date: Thu, 1 Nov 2012 19:22:51 +0100 Subject: GEN: Change function name to match naming style Signed-off-by: Paul Kocialkowski --- gen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gen.c b/gen.c index 86b2726..2f8e358 100644 --- a/gen.c +++ b/gen.c @@ -104,7 +104,7 @@ list_continue: } } -struct ipc_gen_phone_res_expect_info *ipc_gen_phone_res_expect_find_aseq(unsigned char aseq) +struct ipc_gen_phone_res_expect_info *ipc_gen_phone_res_expect_info_find_aseq(unsigned char aseq) { struct ipc_gen_phone_res_expect_info *expect; struct list_head *list; @@ -160,7 +160,7 @@ void ipc_gen_phone_res(struct ipc_message_info *info) return; phone_res = (struct ipc_gen_phone_res *) info->data; - expect = ipc_gen_phone_res_expect_find_aseq(info->aseq); + expect = ipc_gen_phone_res_expect_info_find_aseq(info->aseq); if(expect == NULL) { LOGD("aseq: 0x%x not found in the IPC_GEN_PHONE_RES queue", info->aseq); -- cgit v1.1