mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 11:20:49 +07:00
Bluetooth: Refactor mgmt_pending_foreach
This patch does a trivial refactor in mgmt_pending_foreach function. It replaces list_for_each_safe by list_for_each_entry_safe, simplifying the function. Signed-off-by: Andre Guedes <andre.guedes@openbossa.org> Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
This commit is contained in:
parent
2b8a9a2e6a
commit
a3d0935649
@ -760,13 +760,9 @@ static void mgmt_pending_foreach(u16 opcode, struct hci_dev *hdev,
|
|||||||
void *data),
|
void *data),
|
||||||
void *data)
|
void *data)
|
||||||
{
|
{
|
||||||
struct list_head *p, *n;
|
struct pending_cmd *cmd, *tmp;
|
||||||
|
|
||||||
list_for_each_safe(p, n, &hdev->mgmt_pending) {
|
|
||||||
struct pending_cmd *cmd;
|
|
||||||
|
|
||||||
cmd = list_entry(p, struct pending_cmd, list);
|
|
||||||
|
|
||||||
|
list_for_each_entry_safe(cmd, tmp, &hdev->mgmt_pending, list) {
|
||||||
if (opcode > 0 && cmd->opcode != opcode)
|
if (opcode > 0 && cmd->opcode != opcode)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user