From be69f5f5a71f67f266e5532051b7d40db057ebed Mon Sep 17 00:00:00 2001 From: Peter Hurley Date: Wed, 24 Jul 2013 09:30:05 -0400 Subject: [PATCH] n_tty: Fix build breakage on ppc64 Commit 370822cf01f94ca033a7641346a9e36f93caffa6 'n_tty: Move buffers into n_tty_data' broke the ppc64 build. Include vmalloc.h for the required function declarations. Reported-by: Stephen Rothwell Signed-off-by: Peter Hurley Signed-off-by: Greg Kroah-Hartman --- drivers/tty/n_tty.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/tty/n_tty.c b/drivers/tty/n_tty.c index ed6c4e4d960a0..2c120b6342955 100644 --- a/drivers/tty/n_tty.c +++ b/drivers/tty/n_tty.c @@ -50,6 +50,7 @@ #include #include #include +#include /* number of characters left in xmit buffer before select has we have room */ -- 2.39.5