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

Commit b3449001 authored by Marcel Holtmann's avatar Marcel Holtmann Committed by Johan Hedberg
Browse files

Bluetooth: Use HCI_EV_HARDWARE_ERROR define for event payload



When constructing the event payload for the HCI_Hardware_Error event
message, use the HCI_EV_HARDWARE_ERROR define.

In addition rename the variables from hard_err to hw_err to clearly
indicate that this is about the hardware error and not a hard error.

Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
Signed-off-by: default avatarJohan Hedberg <johan.hedberg@intel.com>
parent 24dfa343
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -172,7 +172,7 @@ static void h5_peer_reset(struct hci_uart *hu)
{
	struct h5 *h5 = hu->priv;
	struct sk_buff *skb;
	const unsigned char hard_err[] = { 0x10, 0x01, 0x00 };
	const u8 hw_err[] = { HCI_EV_HARDWARE_ERROR, 0x01, 0x00 };

	BT_ERR("Peer device has reset");

@@ -192,7 +192,7 @@ static void h5_peer_reset(struct hci_uart *hu)
		return;

	bt_cb(skb)->pkt_type = HCI_EVENT_PKT;
	memcpy(skb_put(skb, 3), hard_err, 3);
	memcpy(skb_put(skb, 3), hw_err, 3);

	/* Send Hardware Error to upper stack */
	hci_recv_frame(hu->hdev, skb);