Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1fdb43fb authored by Zach Johnson's avatar Zach Johnson
Browse files

Remove btm_keypress_notif_evt

Bug: 159815595
Tag: #refactor
Test: compile & verify basic functions working
Change-Id: Iceadd2a8ee214b8d32b333b8de84cc10716aff97
parent fd190c29
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -227,7 +227,6 @@ extern void btm_sec_rmt_host_support_feat_evt(uint8_t* p);
extern void btm_io_capabilities_req(const RawAddress& p);
extern void btm_io_capabilities_rsp(uint8_t* p);
extern void btm_proc_sp_req_evt(tBTM_SP_EVT event, uint8_t* p);
extern void btm_keypress_notif_evt(uint8_t* p);
extern void btm_simple_pair_complete(uint8_t* p);
extern void btm_sec_link_key_notification(const RawAddress& p_bda,
                                          const Octet16& link_key,
+0 −13
Original line number Diff line number Diff line
@@ -3192,19 +3192,6 @@ void btm_proc_sp_req_evt(tBTM_SP_EVT event, uint8_t* p) {
  }
}

/*******************************************************************************
 *
 * Function         btm_keypress_notif_evt
 *
 * Description      This function is called when a key press notification is
 *                  received
 *
 * Returns          void
 *
 ******************************************************************************/
void btm_keypress_notif_evt(uint8_t* p) {
}

/*******************************************************************************
 *
 * Function         btm_simple_pair_complete
+0 −3
Original line number Diff line number Diff line
@@ -383,9 +383,6 @@ void btu_hcif_process_event(UNUSED_ATTR uint8_t controller_id, BT_HDR* p_msg) {
    case HCI_USER_PASSKEY_NOTIFY_EVT:
      btm_proc_sp_req_evt(BTM_SP_KEY_NOTIF_EVT, p);
      break;
    case HCI_KEYPRESS_NOTIFY_EVT:
      btm_keypress_notif_evt(p);
      break;

    case HCI_BLE_EVENT: {
      STREAM_TO_UINT8(ble_sub_code, p);