diff options
author | Victor Fusco <victor@cetuc.puc-rio.br> | 2005-09-10 09:26:38 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-10 19:06:26 +0200 |
commit | 621a4d1a823e1ec631fbfbe6e53ad036e2d2abc6 (patch) | |
tree | e5b029daf1367e892f4e400f640faaac42988877 | |
parent | [PATCH] mm/slab: fix sparse warnings (diff) | |
download | linux-621a4d1a823e1ec631fbfbe6e53ad036e2d2abc6.tar.xz linux-621a4d1a823e1ec631fbfbe6e53ad036e2d2abc6.zip |
[PATCH] char/n_tty: fix sparse warnings (__nocast type)
Fix the sparse warning "implicit cast to nocast type"
Signed-off-by: Victor Fusco <victor@cetuc.puc-rio.br>
Signed-off-by: Domen Puncer <domen@coderock.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | drivers/char/n_tty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/n_tty.c b/drivers/char/n_tty.c index 09103b3d8f05..c9bdf544ed2c 100644 --- a/drivers/char/n_tty.c +++ b/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); |