Home | History | Annotate | Download | only in hw

Lines Matching refs:info

75     struct HCIInfo info;
81 #define hci_from_info(ptr) container_of((ptr), struct bt_hci_s, info)
1466 static void bt_submit_hci(struct HCIInfo *info,
1469 struct bt_hci_s *hci = hci_from_info(info);
1991 hci->info.acl_recv(hci->info.opaque,
2011 static void bt_submit_acl(struct HCIInfo *info,
2014 struct bt_hci_s *hci = hci_from_info(info);
2081 static void bt_submit_sco(struct HCIInfo *info,
2084 struct bt_hci_s *hci = hci_from_info(info);
2132 s->info.evt_recv(s->info.opaque, s->evt_buf, len);
2135 static int bt_hci_bdaddr_set(struct HCIInfo *info, const uint8_t *bd_addr)
2137 struct bt_hci_s *hci = hci_from_info(info);
2143 static void bt_hci_done(struct HCIInfo *info);
2148 bt_hci_done(&hci->info);
2180 s->info.cmd_send = bt_submit_hci;
2181 s->info.sco_send = bt_submit_sco;
2182 s->info.acl_send = bt_submit_acl;
2183 s->info.bdaddr_set = bt_hci_bdaddr_set;
2187 return &s->info;
2190 static void bt_hci_done(struct HCIInfo *info)
2192 struct bt_hci_s *hci = hci_from_info(info);