All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3] selftests: nci: replace unsigned int with int
@ 2021-09-16 12:24 Xiang wangx
  2021-09-16 13:00 ` patchwork-bot+netdevbpf
  0 siblings, 1 reply; 2+ messages in thread
From: Xiang wangx @ 2021-09-16 12:24 UTC (permalink / raw)
  To: bongsu.jeon; +Cc: shuah, netdev, linux-kselftest, linux-kernel, Xiang wangx

Should not use comparison of unsigned expressions < 0.

Signed-off-by: Xiang wangx <wangxiang@cdjrlc.com>
---

Changes since v1
* Change commit log

Changes since v2
* Change commit log

 tools/testing/selftests/nci/nci_dev.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/nci/nci_dev.c b/tools/testing/selftests/nci/nci_dev.c
index e1bf55dabdf6..162c41e9bcae 100644
--- a/tools/testing/selftests/nci/nci_dev.c
+++ b/tools/testing/selftests/nci/nci_dev.c
@@ -746,7 +746,7 @@ int read_write_nci_cmd(int nfc_sock, int virtual_fd, const __u8 *cmd, __u32 cmd_
 		       const __u8 *rsp, __u32 rsp_len)
 {
 	char buf[256];
-	unsigned int len;
+	int len;
 
 	send(nfc_sock, &cmd[3], cmd_len - 3, 0);
 	len = read(virtual_fd, buf, cmd_len);
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v3] selftests: nci: replace unsigned int with int
  2021-09-16 12:24 [PATCH v3] selftests: nci: replace unsigned int with int Xiang wangx
@ 2021-09-16 13:00 ` patchwork-bot+netdevbpf
  0 siblings, 0 replies; 2+ messages in thread
From: patchwork-bot+netdevbpf @ 2021-09-16 13:00 UTC (permalink / raw)
  To: Xiang wangx; +Cc: bongsu.jeon, shuah, netdev, linux-kselftest, linux-kernel

Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Thu, 16 Sep 2021 20:24:42 +0800 you wrote:
> Should not use comparison of unsigned expressions < 0.
> 
> Signed-off-by: Xiang wangx <wangxiang@cdjrlc.com>
> ---
> 
> Changes since v1
> * Change commit log
> 
> [...]

Here is the summary with links:
  - [v3] selftests: nci: replace unsigned int with int
    https://git.kernel.org/netdev/net/c/98dc68f8b0c2

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-09-16 13:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-16 12:24 [PATCH v3] selftests: nci: replace unsigned int with int Xiang wangx
2021-09-16 13:00 ` patchwork-bot+netdevbpf

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.