Skip to content

Commit 893ef97

Browse files
Gustavo F. Padovanholtmann
authored andcommitted
Bluetooth: Fix typo in hci_event.c
memmory -> memory Signed-off-by: Gustavo F. Padovan <[email protected]> Signed-off-by: Marcel Holtmann <[email protected]>
1 parent 08b8b6c commit 893ef97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

net/bluetooth/hci_event.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ static inline void hci_cs_create_conn(struct hci_dev *hdev, __u8 status)
584584
conn->out = 1;
585585
conn->link_mode |= HCI_LM_MASTER;
586586
} else
587-
BT_ERR("No memmory for new connection");
587+
BT_ERR("No memory for new connection");
588588
}
589589
}
590590

@@ -965,7 +965,7 @@ static inline void hci_conn_request_evt(struct hci_dev *hdev, struct sk_buff *sk
965965
conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);
966966
if (!conn) {
967967
if (!(conn = hci_conn_add(hdev, ev->link_type, &ev->bdaddr))) {
968-
BT_ERR("No memmory for new connection");
968+
BT_ERR("No memory for new connection");
969969
hci_dev_unlock(hdev);
970970
return;
971971
}

0 commit comments

Comments
 (0)