]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
NFC: Remove useless HCI private nfc target table
authorEric Lapuyade <eric.lapuyade@intel.com>
Mon, 7 May 2012 10:31:14 +0000 (12:31 +0200)
committerJohn W. Linville <linville@tuxdriver.com>
Tue, 15 May 2012 21:28:00 +0000 (17:28 -0400)
Signed-off-by: Eric Lapuyade <eric.lapuyade@intel.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
include/net/nfc/hci.h
net/nfc/hci/core.c

index aca65a5a9d0da9afd880b9b1fea3e2ebeeecbd3c..95fc0c27578e184844e75574da2a42bd9ef0005f 100644 (file)
@@ -83,8 +83,6 @@ struct nfc_hci_dev {
        u8 gate2pipe[NFC_HCI_MAX_GATES];
 
        bool poll_started;
-       struct nfc_target *targets;
-       int target_count;
 
        u8 sw_romlib;
        u8 sw_patch;
index 545c19f17536f218af6b709e12558d4384011a18..ef5cd5c9e3fb082fded801b4627ae48af33aca07 100644 (file)
@@ -235,13 +235,6 @@ static int nfc_hci_target_discovered(struct nfc_hci_dev *hdev, u8 gate)
        targets->hci_reader_gate = gate;
 
        r = nfc_targets_found(hdev->ndev, targets, 1);
-       if (r < 0)
-               goto exit;
-
-       kfree(hdev->targets);
-       hdev->targets = targets;
-       targets = NULL;
-       hdev->target_count = 1;
 
 exit:
        kfree(targets);