diff options
author | Joe Perches <joe@perches.com> | 2011-11-29 23:37:35 +0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-12-01 00:08:38 +0400 |
commit | 24bf33048579096958083449c9f5a68f9c5c0d6d (patch) | |
tree | 218f4d687c6d9ade979e355c03520b7f994f140f /net/nfc/nci/ntf.c | |
parent | 538af1344ab21cd2b638e779c2e82550a886b26e (diff) | |
download | linux-24bf33048579096958083449c9f5a68f9c5c0d6d.tar.xz |
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, struct nci_core_conn_credit_ntf *ntf = (void *) skb->data; int i; - pr_debug("entry, num_entries %d\n", ntf->num_entries); + pr_debug("num_entries %d\n", ntf->num_entries); if (ntf->num_entries > NCI_MAX_NUM_CONN) ntf->num_entries = NCI_MAX_NUM_CONN; |