[patch 3/4] char/n_tty: fix sparse warnings (__nocast type)

From: domen
Date: Thu Jul 07 2005 - 17:13:41 EST


From: Victor Fusco <victor@xxxxxxxxxxxxxxxx>


Fix the sparse warning "implicit cast to nocast type"

File/Subsystem: drivers/char/n_tty.c

Signed-off-by: Victor Fusco <victor@xxxxxxxxxxxxxxxx>
Signed-off-by: Domen Puncer <domen@xxxxxxxxxxxx>


---
n_tty.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)

Index: quilt/drivers/char/n_tty.c
===================================================================
--- quilt.orig/drivers/char/n_tty.c
+++ quilt/drivers/char/n_tty.c
@@ -62,7 +62,7 @@

static inline unsigned char *alloc_buf(void)
{
- int prio = in_interrupt() ? GFP_ATOMIC : GFP_KERNEL;
+ unsigned int prio = in_interrupt() ? GFP_ATOMIC : GFP_KERNEL;

if (PAGE_SIZE != N_TTY_BUF_SIZE)
return kmalloc(N_TTY_BUF_SIZE, prio);

--
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/