Commit 365a721a authored by Axel Lin's avatar Axel Lin Committed by Samuel Ortiz
Browse files

NFC: Remove redundant test for dev->n_targets in nfc_find_target



Without this test, it returns NULL if dev->n_targets is 0 anyway.

Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent 7ebb88e5
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -280,9 +280,6 @@ static struct nfc_target *nfc_find_target(struct nfc_dev *dev, u32 target_idx)
{
	int i;

	if (dev->n_targets == 0)
		return NULL;

	for (i = 0; i < dev->n_targets; i++) {
		if (dev->targets[i].idx == target_idx)
			return &dev->targets[i];