All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging: gpib: warning: variable 'nec_priv' set but not used warning
@ 2025-03-21  1:06 sunliming
  2025-04-03 14:08 ` Greg KH
  0 siblings, 1 reply; 5+ messages in thread
From: sunliming @ 2025-03-21  1:06 UTC (permalink / raw)
  To: dpenkler, gregkh, arnd, dan.carpenter, everestkc, niharchaithanya,
	linux-staging, linux-kernel
  Cc: sunliming, kernel test robot

From: sunliming <sunliming@kylinos.cn>

Fix below kernel warning:
drivers/staging/gpib/eastwood/fluke_gpib.c:196:23: warning: variable 'nec_priv' set but not
used [-Wunused-but-set-variable]

Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: sunliming <sunliming@kylinos.cn>
---
 drivers/staging/gpib/eastwood/fluke_gpib.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/staging/gpib/eastwood/fluke_gpib.c b/drivers/staging/gpib/eastwood/fluke_gpib.c
index 0304c5de4ccd..6854a745ccff 100644
--- a/drivers/staging/gpib/eastwood/fluke_gpib.c
+++ b/drivers/staging/gpib/eastwood/fluke_gpib.c
@@ -194,10 +194,8 @@ static int fluke_line_status(const gpib_board_t *board)
 	int status = ValidALL;
 	int bsr_bits;
 	struct fluke_priv *e_priv;
-	struct nec7210_priv *nec_priv;
 
 	e_priv = board->private_data;
-	nec_priv = &e_priv->nec7210_priv;
 
 	bsr_bits = fluke_paged_read_byte(e_priv, BUS_STATUS, BUS_STATUS_PAGE);
 
-- 
2.25.1


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

end of thread, other threads:[~2025-04-04  9:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-21  1:06 [PATCH] staging: gpib: warning: variable 'nec_priv' set but not used warning sunliming
2025-04-03 14:08 ` Greg KH
2025-04-04  6:08   ` Sunliming
2025-04-04  7:53     ` Dan Carpenter
2025-04-04  9:15       ` sunliming

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.