[PATCH] ntb: ntb_pingpong: remove redundant initialization of variables msg_data and spad_data

瀏覽次數:3 次
跳到第一則未讀訊息

Colin King

未讀,
2021年6月9日 清晨7:21:302021/6/9
收件者:Jon Mason、Dave Jiang、linu...@googlegroups.com、kernel-...@vger.kernel.org、linux-...@vger.kernel.org
From: Colin Ian King <colin...@canonical.com>

The variables msg_data and spad_data are being initialized with values
that are never read, they are being updated later on. The initializations
are redundant and can be removed.

Addresses-Coverity: ("Unused value")
Signed-off-by: Colin Ian King <colin...@canonical.com>
---
drivers/ntb/test/ntb_pingpong.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/ntb/test/ntb_pingpong.c b/drivers/ntb/test/ntb_pingpong.c
index 2164e8492772..8aeca7914050 100644
--- a/drivers/ntb/test/ntb_pingpong.c
+++ b/drivers/ntb/test/ntb_pingpong.c
@@ -187,7 +187,7 @@ static void pp_ping(struct pp_ctx *pp)

static void pp_pong(struct pp_ctx *pp)
{
- u32 msg_data = -1, spad_data = -1;
+ u32 msg_data, spad_data;
int pidx = 0;

/* Read pong data */
--
2.31.1

Serge Semin

未讀,
2021年9月5日 上午11:35:562021/9/5
收件者:Colin King、Serge Semin、Jon Mason、Dave Jiang、linu...@googlegroups.com、kernel-...@vger.kernel.org、linux-...@vger.kernel.org
On Wed, Jun 09, 2021 at 12:21:28PM +0100, Colin King wrote:
> From: Colin Ian King <colin...@canonical.com>
>
> The variables msg_data and spad_data are being initialized with values
> that are never read, they are being updated later on. The initializations
> are redundant and can be removed.
>
> Addresses-Coverity: ("Unused value")
> Signed-off-by: Colin Ian King <colin...@canonical.com>
> ---
> drivers/ntb/test/ntb_pingpong.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)

Wow, missed this in my emails log. Thanks for the cleanup.
Acked-by: Serge Semin <fancer...@gmail.com>

>
> diff --git a/drivers/ntb/test/ntb_pingpong.c b/drivers/ntb/test/ntb_pingpong.c
> index 2164e8492772..8aeca7914050 100644
> --- a/drivers/ntb/test/ntb_pingpong.c
> +++ b/drivers/ntb/test/ntb_pingpong.c
> @@ -187,7 +187,7 @@ static void pp_ping(struct pp_ctx *pp)
>
> static void pp_pong(struct pp_ctx *pp)
> {
> - u32 msg_data = -1, spad_data = -1;
> + u32 msg_data, spad_data;
> int pidx = 0;
>
> /* Read pong data */
> --
> 2.31.1
>
> --
> You received this message because you are subscribed to the Google Groups "linux-ntb" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to linux-ntb+...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/linux-ntb/20210609112128.184667-1-colin.king%40canonical.com.
回覆所有人
回覆作者
轉寄
0 則新訊息