From: zuoqilin Date: Thu, 18 Mar 2021 13:36:40 +0000 (+0800) Subject: nfc/fdp: Simplify the return expression of fdp_nci_open() X-Git-Tag: microblaze-v5.14~96^2~487 X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=92a310cdcf8120c2d007254f53b927c89c417fc6;p=linux-2.6-microblaze.git nfc/fdp: Simplify the return expression of fdp_nci_open() Simplify the return expression. Signed-off-by: zuoqilin Signed-off-by: David S. Miller --- diff --git a/drivers/nfc/fdp/fdp.c b/drivers/nfc/fdp/fdp.c index 4dc7bd7e02b6..824f2da137a6 100644 --- a/drivers/nfc/fdp/fdp.c +++ b/drivers/nfc/fdp/fdp.c @@ -236,15 +236,12 @@ static int fdp_nci_send_patch(struct nci_dev *ndev, u8 conn_id, u8 type) static int fdp_nci_open(struct nci_dev *ndev) { - int r; struct fdp_nci_info *info = nci_get_drvdata(ndev); struct device *dev = &info->phy->i2c_dev->dev; dev_dbg(dev, "%s\n", __func__); - r = info->phy_ops->enable(info->phy); - - return r; + return info->phy_ops->enable(info->phy); } static int fdp_nci_close(struct nci_dev *ndev)