diff options
author | Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> | 2021-09-13 15:20:28 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-09-13 15:38:01 +0200 |
commit | 64758c6363ea27a68bedf70f76c6f9887957f70d (patch) | |
tree | 283dd1462ab4189da9c290721faf81127358b7d7 /drivers/nfc | |
parent | nfc: pn544: drop unneeded debug prints (diff) | |
download | linux-64758c6363ea27a68bedf70f76c6f9887957f70d.tar.xz linux-64758c6363ea27a68bedf70f76c6f9887957f70d.zip |
nfc: pn544: drop unneeded memory allocation fail messages
nfc_mei_phy_alloc() already prints an error message on memory allocation
failure.
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/nfc')
-rw-r--r-- | drivers/nfc/pn544/mei.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/nfc/pn544/mei.c b/drivers/nfc/pn544/mei.c index a519fa0a53e2..c493f2dbd0e2 100644 --- a/drivers/nfc/pn544/mei.c +++ b/drivers/nfc/pn544/mei.c @@ -23,10 +23,8 @@ static int pn544_mei_probe(struct mei_cl_device *cldev, int r; phy = nfc_mei_phy_alloc(cldev); - if (!phy) { - pr_err("Cannot allocate memory for pn544 mei phy.\n"); + if (!phy) return -ENOMEM; - } r = pn544_hci_probe(phy, &mei_phy_ops, LLC_NOP_NAME, MEI_NFC_HEADER_SIZE, 0, MEI_NFC_MAX_HCI_PAYLOAD, |