Bluetooth: hci_le_adv_report_evt code refactoring
There is no reason to treat the first advertising entry differently from the potential other ones. Besides, the current implementation can easily leads to typos. Signed-off-by: Andre Guedes <andre.guedes@openbossa.org> Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
This commit is contained in:
parent
b6f98044a6
commit
e95beb4141
1 changed files with 6 additions and 8 deletions
|
@ -2838,19 +2838,17 @@ unlock:
|
||||||
static inline void hci_le_adv_report_evt(struct hci_dev *hdev,
|
static inline void hci_le_adv_report_evt(struct hci_dev *hdev,
|
||||||
struct sk_buff *skb)
|
struct sk_buff *skb)
|
||||||
{
|
{
|
||||||
struct hci_ev_le_advertising_info *ev;
|
u8 num_reports = skb->data[0];
|
||||||
u8 num_reports;
|
void *ptr = &skb->data[1];
|
||||||
|
|
||||||
num_reports = skb->data[0];
|
|
||||||
ev = (void *) &skb->data[1];
|
|
||||||
|
|
||||||
hci_dev_lock(hdev);
|
hci_dev_lock(hdev);
|
||||||
|
|
||||||
hci_add_adv_entry(hdev, ev);
|
while (num_reports--) {
|
||||||
|
struct hci_ev_le_advertising_info *ev = ptr;
|
||||||
|
|
||||||
while (--num_reports) {
|
|
||||||
ev = (void *) (ev->data + ev->length + 1);
|
|
||||||
hci_add_adv_entry(hdev, ev);
|
hci_add_adv_entry(hdev, ev);
|
||||||
|
|
||||||
|
ptr += sizeof(*ev) + ev->length + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
hci_dev_unlock(hdev);
|
hci_dev_unlock(hdev);
|
||||||
|
|
Loading…
Reference in a new issue