[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1388487309-22319-1-git-send-email-vincent.stehle@laposte.net>
Date: Tue, 31 Dec 2013 11:55:08 +0100
From: Vincent Stehlé <vincent.stehle@...oste.net>
To: driverdev-devel@...uxdriverproject.org, devel@...verdev.osuosl.org,
linux-kernel@...r.kernel.org, linux-next@...r.kernel.org
Cc: Vincent Stehlé <vincent.stehle@...oste.net>,
Lidza Louina <lidza.louina@...il.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Scott H Kilau <Scott_Kilau@...i.com>, Eng.Linux@...i.com,
trivial@...nel.org
Subject: [PATCH linux-next 1/2] staging: dgap: fix missing header inclusion
Include slab.h to fix the following compilation error:
drivers/staging/dgap/dgap_fep5.c: In function ‘dgap_do_config_load’:
drivers/staging/dgap/dgap_fep5.c:78:2: error: implicit declaration of function ‘kzalloc’ [-Werror=implicit-function-declaration]
Signed-off-by: Vincent Stehlé <vincent.stehle@...oste.net>
Cc: Lidza Louina <lidza.louina@...il.com>
Cc: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
Cc: Scott H Kilau <Scott_Kilau@...i.com>
Cc: Eng.Linux@...i.com
Cc: trivial@...nel.org
---
Hi,
This can be seen with e.g. linux next-20131224 arm allmodconfig.
Best regards,
V.
drivers/staging/dgap/dgap_fep5.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/staging/dgap/dgap_fep5.c b/drivers/staging/dgap/dgap_fep5.c
index 15f9a85..7deea2a 100644
--- a/drivers/staging/dgap/dgap_fep5.c
+++ b/drivers/staging/dgap/dgap_fep5.c
@@ -39,6 +39,7 @@
#include <asm/uaccess.h> /* For copy_from_user/copy_to_user */
#include <linux/tty.h>
#include <linux/tty_flip.h> /* For tty_schedule_flip */
+#include <linux/slab.h>
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,39)
#include <linux/sched.h>
--
1.8.5.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists