All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 1/2] staging: comedi: cast function output to assigned variable type
@ 2021-02-18  8:44 ` Atul Gopinathan
  0 siblings, 0 replies; 24+ messages in thread
From: Atul Gopinathan @ 2021-02-18  8:44 UTC (permalink / raw)
  To: gregkh; +Cc: abbotti, hsweeten, devel, linux-kernel, Atul Gopinathan

Fix the following warning generated by sparse:

drivers/staging//comedi/comedi_fops.c:2956:23: warning: incorrect type in assignment (different address spaces)
drivers/staging//comedi/comedi_fops.c:2956:23:    expected unsigned int *chanlist
drivers/staging//comedi/comedi_fops.c:2956:23:    got void [noderef] <asn:1> *

compat_ptr() has a return type of "void __user *"
as defined in "include/linux/compat.h"

cmd->chanlist is of type "unsigned int *" as defined
in drivers/staging/comedi/comedi.h" in struct
comedi_cmd.

Signed-off-by: Atul Gopinathan <atulgopinathan@gmail.com>
---
 drivers/staging/comedi/comedi_fops.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/comedi/comedi_fops.c b/drivers/staging/comedi/comedi_fops.c
index e85a99b68f31..fc4ec38012b4 100644
--- a/drivers/staging/comedi/comedi_fops.c
+++ b/drivers/staging/comedi/comedi_fops.c
@@ -2953,7 +2953,7 @@ static int get_compat_cmd(struct comedi_cmd *cmd,
 	cmd->scan_end_arg = v32.scan_end_arg;
 	cmd->stop_src = v32.stop_src;
 	cmd->stop_arg = v32.stop_arg;
-	cmd->chanlist = compat_ptr(v32.chanlist);
+	cmd->chanlist = (unsigned int __force *)compat_ptr(v32.chanlist);
 	cmd->chanlist_len = v32.chanlist_len;
 	cmd->data = compat_ptr(v32.data);
 	cmd->data_len = v32.data_len;
-- 
2.27.0


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

end of thread, other threads:[~2021-02-19  7:43 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-18  8:44 [PATCH v2 1/2] staging: comedi: cast function output to assigned variable type Atul Gopinathan
2021-02-18  8:44 ` Atul Gopinathan
2021-02-18  8:44 ` [PATCH v2 2/2] staging: comedi: cast function argument to expected type (void __user *) Atul Gopinathan
2021-02-18  8:44   ` Atul Gopinathan
2021-02-18 10:31 ` [PATCH v2 1/2] staging: comedi: cast function output to assigned variable type Ian Abbott
2021-02-18 10:31   ` Ian Abbott
2021-02-18 10:47   ` Atul Gopinathan
2021-02-18 10:47     ` Atul Gopinathan
2021-02-18 12:21     ` Greg KH
2021-02-18 12:21       ` Greg KH
2021-02-18 12:52       ` Atul Gopinathan
2021-02-18 12:52         ` Atul Gopinathan
2021-02-18 13:46         ` Greg KH
2021-02-18 13:46           ` Greg KH
2021-02-18 14:12           ` Atul Gopinathan
2021-02-18 14:12             ` Atul Gopinathan
2021-02-18 15:51         ` Dan Carpenter
2021-02-18 15:51           ` Dan Carpenter
2021-02-18 16:41           ` Atul Gopinathan
2021-02-18 16:41             ` Atul Gopinathan
2021-02-19  6:55             ` Dan Carpenter
2021-02-19  6:55               ` Dan Carpenter
2021-02-19  7:42               ` Atul Gopinathan
2021-02-19  7:42                 ` Atul Gopinathan

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.