From b5891d1ddf83824dbc778cd8f070f97a91c48f61 Mon Sep 17 00:00:00 2001 From: Sathish Narasimman Date: Wed, 4 Jan 2017 19:08:39 +0530 Subject: [PATCH] Bluetooth: HFP HF: Rename cind_status_handle_values Rename cind_status_handle_values to ag_inidcator_handle_values. Because the same function will be reused internally for +CIEV Callbacks. Change-Id: I875064de17700d72ea89dbbe0f5cb6554c813a5e Signed-off-by: Sathish Narasimman --- subsys/bluetooth/host/hfp_hf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subsys/bluetooth/host/hfp_hf.c b/subsys/bluetooth/host/hfp_hf.c index f5a4cdac25f..e6df2311ea4 100644 --- a/subsys/bluetooth/host/hfp_hf.c +++ b/subsys/bluetooth/host/hfp_hf.c @@ -222,7 +222,7 @@ int cind_resp(struct at_client *hf_at, struct net_buf *buf) return 0; } -void cind_status_handle_values(struct at_client *hf_at, uint32_t index, +void ag_indicator_handle_values(struct at_client *hf_at, uint32_t index, uint32_t value) { struct bt_hfp_hf *hf = CONTAINER_OF(hf_at, struct bt_hfp_hf, at); @@ -298,7 +298,7 @@ int cind_status_handle(struct at_client *hf_at) return ret; } - cind_status_handle_values(hf_at, index, value); + ag_indicator_handle_values(hf_at, index, value); index++; }