|
From: Willy S. <sag...@us...> - 2002-04-11 10:30:53
|
The following file was modified in linux/drivers/char/bluetooth: Name Old version New version Tag Comment ---- ----------- ----------- --- ------- bt_proc.c 1.21 1.22=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): --- bt_proc.c 17 Apr 2001 16:05:11 -0000 1.21 +++ bt_proc.c 11 Apr 2002 10:14:04 -0000 1.22 @@ -47,7 +47,11 @@ #include <linux/module.h> #include <linux/types.h> #include <linux/errno.h> +#if LINUX_VERSION_CODE >=3D 0x20200 +#include <linux/slab.h> +#else #include <linux/malloc.h> +#endif #include <linux/fs.h> #include <linux/locks.h> #include <linux/sched.h> |