From: Gustavo F. Padovan Date: Fri, 14 Oct 2011 22:32:56 +0000 (-0300) Subject: Bluetooth: Use list_for_each_entry() in mgmt X-Git-Tag: v3.3-rc1~182^2~44^2~536^2~64 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=12dc0743015fee37f4090f0937c898294cd2d133;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git Bluetooth: Use list_for_each_entry() in mgmt Signed-off-by: Gustavo F. Padovan --- diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c index 9d0e223..080cfb6 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c @@ -694,14 +694,11 @@ static int update_eir(struct hci_dev *hdev) static u8 get_service_classes(struct hci_dev *hdev) { - struct list_head *p; + struct bt_uuid *uuid; u8 val = 0; - list_for_each(p, &hdev->uuids) { - struct bt_uuid *uuid = list_entry(p, struct bt_uuid, list); - + list_for_each_entry(uuid, &hdev->uuids, list) val |= uuid->svc_hint; - } return val; }