Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4821002c authored by Johan Hedberg's avatar Johan Hedberg Committed by Gustavo Padovan
Browse files

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: default avatarJohan Hedberg <johan.hedberg@intel.com>
Acked-by: default avatarMarcel Holtmann <marcel@holtmann.org>
Signed-off-by: default avatarGustavo Padovan <gustavo.padovan@collabora.co.uk>
parent de66aa63
Loading
Loading
Loading
Loading
+3 −7
Original line number Diff line number Diff line
@@ -1183,14 +1183,10 @@ static void hci_discov_off(struct work_struct *work)

int hci_uuids_clear(struct hci_dev *hdev)
{
	struct list_head *p, *n;

	list_for_each_safe(p, n, &hdev->uuids) {
		struct bt_uuid *uuid;
	struct bt_uuid *uuid, *tmp;

		uuid = list_entry(p, struct bt_uuid, list);

		list_del(p);
	list_for_each_entry_safe(uuid, tmp, &hdev->uuids, list) {
		list_del(&uuid->list);
		kfree(uuid);
	}