From: Krzysztof Kozlowski Date: Mon, 13 Sep 2021 13:20:27 +0000 (+0200) Subject: nfc: pn544: drop unneeded debug prints X-Git-Tag: v6.6.17~8953^2~469^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=aed4146c5503f2015e94c67f834e41a165241358;p=platform%2Fkernel%2Flinux-rpi.git nfc: pn544: 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 Signed-off-by: David S. Miller --- diff --git a/drivers/nfc/pn544/mei.c b/drivers/nfc/pn544/mei.c index 5c10aac..a519fa0 100644 --- a/drivers/nfc/pn544/mei.c +++ b/drivers/nfc/pn544/mei.c @@ -22,8 +22,6 @@ static int pn544_mei_probe(struct mei_cl_device *cldev, struct nfc_mei_phy *phy; int r; - pr_info("Probing NFC pn544\n"); - phy = nfc_mei_phy_alloc(cldev); if (!phy) { pr_err("Cannot allocate memory for pn544 mei phy.\n"); @@ -46,8 +44,6 @@ static void pn544_mei_remove(struct mei_cl_device *cldev) { struct nfc_mei_phy *phy = mei_cldev_get_drvdata(cldev); - pr_info("Removing pn544\n"); - pn544_hci_remove(phy->hdev); nfc_mei_phy_free(phy);