Hi Ravi, On Thursday 12 of June 2014 16:10:13 Ravi kumar Veeramally wrote: > --- > android/hal-health.c | 14 ++++++++++++++ > 1 file changed, 14 insertions(+) > > diff --git a/android/hal-health.c b/android/hal-health.c > index 0ef6afc..27e72dc 100644 > --- a/android/hal-health.c > +++ b/android/hal-health.c > @@ -41,6 +41,17 @@ static void handle_app_registration_state(void *buf, uint16_t len, int fd) > cbacks->app_reg_state_cb(ev->id, ev->state); > } > > +static void handle_channel_state(void *buf, uint16_t len, int fd) > +{ > + struct hal_ev_health_channel_state *ev = buf; > + > + if (cbacks->channel_state_cb) > + cbacks->channel_state_cb(ev->app_id, > + (bt_bdaddr_t *) ev->bdaddr, > + ev->mdep_index, ev->channel_id, > + ev->channel_state, fd); > +} > + > /* > * handlers will be called from notification thread context, > * index in table equals to 'opcode - HAL_MINIMUM_EVENT' > @@ -49,6 +60,9 @@ static const struct hal_ipc_handler ev_handlers[] = { > /* HAL_EV_HEALTH_APP_REG_STATE */ > { handle_app_registration_state, false, > sizeof(struct hal_ev_health_app_reg_state) }, > + /* HAL_EV_HEALTH_CHANNEL_STATE */ > + { handle_channel_state, false, > + sizeof(struct hal_ev_health_channel_state) }, > }; > > static bt_status_t register_application(bthl_reg_param_t *reg, int *app_id) > This patch is now applied, thanks. -- Best regards, Szymon Janc -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html