Re: [PATCH 1/2] staging: dgap: Fix build errors

2013-08-30 Thread Greg KH
On Thu, Aug 29, 2013 at 03:36:54PM +0530, Sachin Kamat wrote:
 Fixes the following compilation errors:
 drivers/staging/dgap/dgap_driver.c:423:3: error:
 implicit declaration of function ‘kfree’ 
 [-Werror=implicit-function-declaration]
 kfree(dgap_config_buf);
 ^
 drivers/staging/dgap/dgap_driver.c: In function ‘dgap_driver_kzmalloc’:
 drivers/staging/dgap/dgap_driver.c:940:3: error: implicit
 declaration of function ‘kmalloc’ [-Werror=implicit-function-declaration]
 
 Signed-off-by: Sachin Kamat sachin.ka...@linaro.org
 ---
  drivers/staging/dgap/dgap_driver.c |1 +
  1 file changed, 1 insertion(+)

This patch no longer applies, sorry.

greg k-h
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


[PATCH 1/2] staging: dgap: Fix build errors

2013-08-29 Thread Sachin Kamat
Fixes the following compilation errors:
drivers/staging/dgap/dgap_driver.c:423:3: error:
implicit declaration of function ‘kfree’ [-Werror=implicit-function-declaration]
kfree(dgap_config_buf);
^
drivers/staging/dgap/dgap_driver.c: In function ‘dgap_driver_kzmalloc’:
drivers/staging/dgap/dgap_driver.c:940:3: error: implicit
declaration of function ‘kmalloc’ [-Werror=implicit-function-declaration]

Signed-off-by: Sachin Kamat sachin.ka...@linaro.org
---
 drivers/staging/dgap/dgap_driver.c |1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/staging/dgap/dgap_driver.c 
b/drivers/staging/dgap/dgap_driver.c
index 9f777e4..724a685 100644
--- a/drivers/staging/dgap/dgap_driver.c
+++ b/drivers/staging/dgap/dgap_driver.c
@@ -36,6 +36,7 @@
 #include linux/module.h
 #include linux/pci.h
 #include linux/delay.h   /* For udelay */
+#include linux/slab.h
 #include asm/uaccess.h   /* For copy_from_user/copy_to_user */
 
 #if LINUX_VERSION_CODE = KERNEL_VERSION(2,6,39)
-- 
1.7.9.5

___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel