From: Willy S. <sag...@us...> - 2002-04-11 14:36:50
|
The following file was modified in linux/drivers/char/bluetooth: Name Old version New version Tag Comment ---- ----------- ----------- --- ------- sdp.c 1.87 1.88=20=20=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Added linux version ifdef for malloc.h/slab.h The diff of the modified file(s): --- sdp.c 7 Mar 2002 21:32:29 -0000 1.87 +++ sdp.c 11 Apr 2002 11:48:44 -0000 1.88 @@ -45,7 +45,11 @@ =20 #ifdef __KERNEL__ #include <linux/bluetooth/sysdep-2.1.h> +#if LINUX_VERSION_CODE >=3D 0x20200 +#include <linux/slab.h> +#else #include <linux/malloc.h> +#endif #include <linux/bluetooth/btcommon.h> #include <linux/bluetooth/sdp.h> #include <linux/bluetooth/l2cap.h> |