mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-15 16:53:54 +08:00
nfc: signedness bug in __nci_request()
wait_for_completion_interruptible_timeout() returns -ERESTARTSYS if interrupted so completion_rc needs to be signed. The current code probably returns -ETIMEDOUT if we hit this situation, but after this patch is applied it will return -ERESTARTSYS. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
123877b80e
commit
f8c141c3e9
@ -68,7 +68,7 @@ static int __nci_request(struct nci_dev *ndev,
|
|||||||
__u32 timeout)
|
__u32 timeout)
|
||||||
{
|
{
|
||||||
int rc = 0;
|
int rc = 0;
|
||||||
unsigned long completion_rc;
|
long completion_rc;
|
||||||
|
|
||||||
ndev->req_status = NCI_REQ_PEND;
|
ndev->req_status = NCI_REQ_PEND;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user