[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20210118205522.317087-1-bongsu.jeon@samsung.com>
Date: Tue, 19 Jan 2021 05:55:22 +0900
From: Bongsu Jeon <bongsu.jeon2@...il.com>
To: davem@...emloft.net, kuba@...nel.org
Cc: netdev@...r.kernel.org, linux-kernel@...r.kernel.org,
linux-nfc@...ts.01.org, Bongsu Jeon <bongsu.jeon@...sung.com>
Subject: [PATCH net] net: nfc: nci: fix the wrong NCI_CORE_INIT parameters
From: Bongsu Jeon <bongsu.jeon@...sung.com>
Fix the code because NCI_CORE_INIT_CMD includes two parameters in NCI2.0
but there is no parameters in NCI1.x.
Signed-off-by: Bongsu Jeon <bongsu.jeon@...sung.com>
---
net/nfc/nci/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/nfc/nci/core.c b/net/nfc/nci/core.c
index e64727e1a72f..02a1f13f0798 100644
--- a/net/nfc/nci/core.c
+++ b/net/nfc/nci/core.c
@@ -508,7 +508,7 @@ static int nci_open_device(struct nci_dev *ndev)
};
unsigned long opt = 0;
- if (!(ndev->nci_ver & NCI_VER_2_MASK))
+ if (ndev->nci_ver & NCI_VER_2_MASK)
opt = (unsigned long)&nci_init_v2_cmd;
rc = __nci_request(ndev, nci_init_req, opt,
--
2.25.1
Powered by blists - more mailing lists