Bluetooth: Simplify UUIDs clearing code
The code for clearing the UUIDs list can be simplified by using list_for_each_entry_safe instead of list_for_each_safe. Signed-off-by: Johan Hedberg <johan.hedberg@intel.com> Acked-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
This commit is contained in:
parent
de66aa6305
commit
4821002ce2
|
@ -1183,14 +1183,10 @@ static void hci_discov_off(struct work_struct *work)
|
||||||
|
|
||||||
int hci_uuids_clear(struct hci_dev *hdev)
|
int hci_uuids_clear(struct hci_dev *hdev)
|
||||||
{
|
{
|
||||||
struct list_head *p, *n;
|
struct bt_uuid *uuid, *tmp;
|
||||||
|
|
||||||
list_for_each_safe(p, n, &hdev->uuids) {
|
list_for_each_entry_safe(uuid, tmp, &hdev->uuids, list) {
|
||||||
struct bt_uuid *uuid;
|
list_del(&uuid->list);
|
||||||
|
|
||||||
uuid = list_entry(p, struct bt_uuid, list);
|
|
||||||
|
|
||||||
list_del(p);
|
|
||||||
kfree(uuid);
|
kfree(uuid);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue