diff options
author | Joe Perches <joe@perches.com> | 2011-11-29 14:37:35 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-11-30 15:08:38 -0500 |
commit | 24bf33048579096958083449c9f5a68f9c5c0d6d (patch) | |
tree | 218f4d687c6d9ade979e355c03520b7f994f140f /net/nfc/nci/ntf.c | |
parent | 538af1344ab21cd2b638e779c2e82550a886b26e (diff) |
nfc: Remove function tracer like entry messages
Logging messages that mimic function tracer enter/exit
aren't necessary. Just remove them.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/nfc/nci/ntf.c')
-rw-r--r-- | net/nfc/nci/ntf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/nfc/nci/ntf.c b/net/nfc/nci/ntf.c index f26edc09aa97..c36bd4a09abb 100644 --- a/net/nfc/nci/ntf.c +++ b/net/nfc/nci/ntf.c | |||
@@ -45,7 +45,7 @@ static void nci_core_conn_credits_ntf_packet(struct nci_dev *ndev, | |||
45 | struct nci_core_conn_credit_ntf *ntf = (void *) skb->data; | 45 | struct nci_core_conn_credit_ntf *ntf = (void *) skb->data; |
46 | int i; | 46 | int i; |
47 | 47 | ||
48 | pr_debug("entry, num_entries %d\n", ntf->num_entries); | 48 | pr_debug("num_entries %d\n", ntf->num_entries); |
49 | 49 | ||
50 | if (ntf->num_entries > NCI_MAX_NUM_CONN) | 50 | if (ntf->num_entries > NCI_MAX_NUM_CONN) |
51 | ntf->num_entries = NCI_MAX_NUM_CONN; | 51 | ntf->num_entries = NCI_MAX_NUM_CONN; |