Messages in this thread Patch in this message |  | | From | Sudip Mukherjee <> | Subject | [PATCH] char: tb0219: fix build failure | Date | Wed, 5 Oct 2016 19:13:22 +0530 |
| |
The build of mips tb0219_defconfig was failing with the error:
drivers/char/tb0219.c:188:2: error: implicit declaration of function 'put_user' drivers/char/tb0219.c:216:3: error: implicit declaration of function 'get_user'
Quoting Al Viro - "another victim of indirect include chains"
Fixes: 58a8f3b69e07 ("mips: separate extable.h, switch module.h to it") Cc: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk> ---
build log is at: https://travis-ci.org/sudipm-mukherjee/parport/jobs/165143641
drivers/char/tb0219.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/drivers/char/tb0219.c b/drivers/char/tb0219.c index 480a777..7c19d9b 100644 --- a/drivers/char/tb0219.c +++ b/drivers/char/tb0219.c @@ -21,6 +21,7 @@ #include <linux/fs.h> #include <linux/init.h> #include <linux/module.h> +#include <linux/uaccess.h> #include <asm/io.h> #include <asm/reboot.h> -- 1.9.1
|  |