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

Commit 18e4aeb9 authored by Johan Hedberg's avatar Johan Hedberg Committed by Marcel Holtmann
Browse files

Bluetooth: Simplify logic when checking SMP_FLAG_TK_VALID



This is a trivial coding style simplification by instead of having an
extra early return to instead revert the if condition and do the single
needed queue_work() call there.

Signed-off-by: default avatarJohan Hedberg <johan.hedberg@intel.com>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 2e233644
Loading
Loading
Loading
Loading
+2 −4
Original line number Original line Diff line number Diff line
@@ -761,9 +761,7 @@ static u8 smp_cmd_pairing_rsp(struct l2cap_conn *conn, struct sk_buff *skb)
	set_bit(SMP_FLAG_CFM_PENDING, &smp->smp_flags);
	set_bit(SMP_FLAG_CFM_PENDING, &smp->smp_flags);


	/* Can't compose response until we have been confirmed */
	/* Can't compose response until we have been confirmed */
	if (!test_bit(SMP_FLAG_TK_VALID, &smp->smp_flags))
	if (test_bit(SMP_FLAG_TK_VALID, &smp->smp_flags))
		return 0;

		queue_work(hdev->workqueue, &smp->confirm);
		queue_work(hdev->workqueue, &smp->confirm);


	return 0;
	return 0;