1 Jun 2010 08:54
[PATCH 1/3] Rename hci_recv_fragment to reflect its actual use
Renaming hci_recv_fragment to hci_recv_packet_fragment as it will be used only for reassembling HCI fragments with know packet type. Signed-off-by: suraj <suraj@...> --- include/net/bluetooth/hci_core.h | 3 ++- net/bluetooth/hci_core.c | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h index e42f6ed..65c3c13 100644 --- a/include/net/bluetooth/hci_core.h +++ b/include/net/bluetooth/hci_core.h <at> <at> -427,7 +427,8 <at> <at> int hci_inquiry(void __user *arg); void hci_event_packet(struct hci_dev *hdev, struct sk_buff *skb); int hci_recv_frame(struct sk_buff *skb); -int hci_recv_fragment(struct hci_dev *hdev, int type, void *data, int count); +int hci_recv_packet_fragment(struct hci_dev *hdev, int type, void *data, + int count); int hci_register_sysfs(struct hci_dev *hdev); void hci_unregister_sysfs(struct hci_dev *hdev); diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c index 5e83f8e..e7ce432 100644 --- a/net/bluetooth/hci_core.c +++ b/net/bluetooth/hci_core.c <at> <at> -1033,7 +1033,8 <at> <at> EXPORT_SYMBOL(hci_recv_frame); /* Receive packet type fragment */ #define __reassembly(hdev, type) ((hdev)->reassembly[(type) - 2])(Continue reading)
RSS Feed