|
From: Peter K. <pk...@us...> - 2001-04-10 12:26:41
|
The following files were modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- btcommon.h 1.67 1.68=20=20=20=20=20=20=20=20=20=20=20=20 btconfig.h 1.23 1.24=20=20=20=20=20=20=20=20=20=20=20=20 rfcomm.h 1.35 1.36=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Include linux/config.h where required to keep 'make dep' happy. The diff of the modified file(s): --- btcommon.h 2001/03/30 09:40:53 1.67 +++ btcommon.h 2001/04/10 12:26:41 1.68 @@ -51,7 +51,6 @@ #include <linux/bluetooth/btconfig.h> #include <linux/timer.h> #include <linux/module.h> -#include <linux/config.h> #include <linux/sched.h> #include <linux/version.h> #else --- btconfig.h 2001/03/05 16:33:36 1.23 +++ btconfig.h 2001/04/10 12:26:41 1.24 @@ -39,6 +39,10 @@ * */ =20 +#ifdef __KERNEL__ +#include <linux/config.h> +#endif + /* * When the stack is included as part of the kernel source tree, this macro * is defined, and we can use the standard Linux kernel config instead of --- rfcomm.h 2001/03/07 20:09:24 1.35 +++ rfcomm.h 2001/04/10 12:26:41 1.36 @@ -47,6 +47,7 @@ /****************** INCLUDE FILES SECTION ********************************= ***/ =20 #ifdef __KERNEL__ +#include <linux/config.h> #include <linux/types.h> #include <linux/bluetooth/btcommon.h> #else |