public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] char: nvram: Remove unused nvram_mutex to fix -Wunused-variable warning
@ 2026-03-23  7:32 Venkat Rao Bagalkote
  2026-03-23  7:50 ` Greg KH
  2026-03-23 10:14 ` Christophe Leroy (CS GROUP)
  0 siblings, 2 replies; 5+ messages in thread
From: Venkat Rao Bagalkote @ 2026-03-23  7:32 UTC (permalink / raw)
  To: arnd, gregkh
  Cc: linux-kernel, linux-kbuild, linuxppc-dev, nathan, nsc, ojeda,
	masahiroy, linux, tamird, rostedt, ihor.solodrai, ritesh.list,
	maddy, peterz, venkat88

v2:
  - Added missing Suggested-by tag from Ritesh Harjani (IBM)

drivers/char/nvram.c defines a static mutex 'nvram_mutex' which is never
used. This results in a compiler warning on linux-next builds:

  warning: 'nvram_mutex' defined but not used [-Wunused-variable]

Remove the unused definition to avoid the warning.

Suggested-by: Ritesh Harjani (IBM) <ritesh.list@gmail.com>
Signed-off-by: Venkat Rao Bagalkote <venkat88@linux.ibm.com>
---
 drivers/char/nvram.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/char/nvram.c b/drivers/char/nvram.c
index 9eff426a9286..2ce3307663ed 100644
--- a/drivers/char/nvram.c
+++ b/drivers/char/nvram.c
@@ -53,7 +53,7 @@
 #include <asm/nvram.h>
 #endif
 
-static DEFINE_MUTEX(nvram_mutex);
+static __maybe_unused DEFINE_MUTEX(nvram_mutex);
 static DEFINE_SPINLOCK(nvram_state_lock);
 static int nvram_open_cnt;	/* #times opened */
 static int nvram_open_mode;	/* special open modes */
-- 
2.45.2


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

end of thread, other threads:[~2026-03-25  9:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-23  7:32 [PATCH v2] char: nvram: Remove unused nvram_mutex to fix -Wunused-variable warning Venkat Rao Bagalkote
2026-03-23  7:50 ` Greg KH
2026-03-23 10:14 ` Christophe Leroy (CS GROUP)
2026-03-23 17:58   ` Arnd Bergmann
2026-03-25  9:04   ` Ritesh Harjani

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox