aboutsummaryrefslogtreecommitdiffstats
path: root/net/nfc
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2014-02-24 08:04:30 -0500
committerSamuel Ortiz <sameo@linux.intel.com>2014-03-14 15:19:08 -0400
commit365a721adbdfe5f6577a66b9b74c12dc98fbb4a3 (patch)
tree8c125f2069d52fdf56bde9f8c27bbf7273ac7fc6 /net/nfc
parent7ebb88e539028f3c144c0c34d3ae187e73238cb6 (diff)
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: Axel Lin <axel.lin@ingics.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'net/nfc')
-rw-r--r--net/nfc/core.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/net/nfc/core.c b/net/nfc/core.c
index ada92316f723..be5d50c6d81d 100644
--- a/net/nfc/core.c
+++ b/net/nfc/core.c
@@ -280,9 +280,6 @@ static struct nfc_target *nfc_find_target(struct nfc_dev *dev, u32 target_idx)
280{ 280{
281 int i; 281 int i;
282 282
283 if (dev->n_targets == 0)
284 return NULL;
285
286 for (i = 0; i < dev->n_targets; i++) { 283 for (i = 0; i < dev->n_targets; i++) {
287 if (dev->targets[i].idx == target_idx) 284 if (dev->targets[i].idx == target_idx)
288 return &dev->targets[i]; 285 return &dev->targets[i];