linux-mmc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mmc: block: propagate correct returned value in mmc_rpmb_ioctl
@ 2018-05-16 19:20 Mathieu Malaterre
  2018-05-17  2:45 ` Shawn Lin
  2018-05-21 11:36 ` Ulf Hansson
  0 siblings, 2 replies; 5+ messages in thread
From: Mathieu Malaterre @ 2018-05-16 19:20 UTC (permalink / raw)
  To: Linus Walleij
  Cc: Mathieu Malaterre, Ulf Hansson, Adrian Hunter, Shawn Lin,
	Wolfram Sang, linux-mmc, linux-kernel

In commit 97548575bef3 ("mmc: block: Convert RPMB to a character device") a
new function `mmc_rpmb_ioctl` was added. The final return is simply
returning a value of `0` instead of propagating the correct return code.

Discovered during a compilation with W=1, silence the following gcc warning

  drivers/mmc/core/block.c:2470:6: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable]

Signed-off-by: Mathieu Malaterre <malat@debian.org>
---
 drivers/mmc/core/block.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mmc/core/block.c b/drivers/mmc/core/block.c
index 9e923cd1d80e..38a7586b00cc 100644
--- a/drivers/mmc/core/block.c
+++ b/drivers/mmc/core/block.c
@@ -2485,7 +2485,7 @@ static long mmc_rpmb_ioctl(struct file *filp, unsigned int cmd,
 		break;
 	}
 
-	return 0;
+	return ret;
 }
 
 #ifdef CONFIG_COMPAT
-- 
2.11.0

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

end of thread, other threads:[~2018-05-21 11:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-16 19:20 [PATCH] mmc: block: propagate correct returned value in mmc_rpmb_ioctl Mathieu Malaterre
2018-05-17  2:45 ` Shawn Lin
2018-05-17  6:16   ` Mathieu Malaterre
2018-05-17  6:24     ` Shawn Lin
2018-05-21 11:36 ` Ulf Hansson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).