nfc: drop unneeded debug prints
ftrace is a preferred and standard way to debug entering and exiting functions so drop useless debug prints. Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
committed by
Jakub Kicinski
parent
311c13ddc8
commit
5b25a5bf5e
@@ -337,8 +337,6 @@ int nfc_llcp_send_disconnect(struct nfc_llcp_sock *sock)
|
||||
struct nfc_dev *dev;
|
||||
struct nfc_llcp_local *local;
|
||||
|
||||
pr_debug("Sending DISC\n");
|
||||
|
||||
local = sock->local;
|
||||
if (local == NULL)
|
||||
return -ENODEV;
|
||||
@@ -362,8 +360,6 @@ int nfc_llcp_send_symm(struct nfc_dev *dev)
|
||||
struct nfc_llcp_local *local;
|
||||
u16 size = 0;
|
||||
|
||||
pr_debug("Sending SYMM\n");
|
||||
|
||||
local = nfc_llcp_find_local(dev);
|
||||
if (local == NULL)
|
||||
return -ENODEV;
|
||||
@@ -399,8 +395,6 @@ int nfc_llcp_send_connect(struct nfc_llcp_sock *sock)
|
||||
u16 size = 0;
|
||||
__be16 miux;
|
||||
|
||||
pr_debug("Sending CONNECT\n");
|
||||
|
||||
local = sock->local;
|
||||
if (local == NULL)
|
||||
return -ENODEV;
|
||||
@@ -475,8 +469,6 @@ int nfc_llcp_send_cc(struct nfc_llcp_sock *sock)
|
||||
u16 size = 0;
|
||||
__be16 miux;
|
||||
|
||||
pr_debug("Sending CC\n");
|
||||
|
||||
local = sock->local;
|
||||
if (local == NULL)
|
||||
return -ENODEV;
|
||||
|
||||
Reference in New Issue
Block a user