From dbca36eab48ee48dfc60b8f41ffad54160ebdd09 Mon Sep 17 00:00:00 2001 From: Dan Carpenter Date: Mon, 5 Mar 2012 21:07:11 +0300 Subject: [PATCH] tty: cyclades: TIOCSERGETLSR should should store to a uint TIOCSERGETLSR should be saved in a uint so the cast here to unsigned long is a bug. Reported-by: Jiri Slaby Signed-off-by: Dan Carpenter Acked-by: Jiri Slaby Signed-off-by: Greg Kroah-Hartman --- drivers/tty/cyclades.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/tty/cyclades.c b/drivers/tty/cyclades.c index c9bf779481d..5575fee7a55 100644 --- a/drivers/tty/cyclades.c +++ b/drivers/tty/cyclades.c @@ -2413,7 +2413,7 @@ static int get_lsr_info(struct cyclades_port *info, unsigned int __user *value) /* Not supported yet */ return -EINVAL; } - return put_user(result, (unsigned long __user *)value); + return put_user(result, value); } static int cy_tiocmget(struct tty_struct *tty) -- 2.39.2