|
From: Peter K. <pk...@us...> - 2001-08-16 13:01:23
|
The following files were modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- bcsp.h 1.7 1.8=20=20=20=20=20=20=20=20=20=20=20=20=20 bcsp_debug.h 1.4 1.5=20=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Made the BCSP files at least compile for user mode. The diff of the modified file(s): --- bcsp.h 2001/06/06 15:01:11 1.7 +++ bcsp.h 2001/08/16 13:01:22 1.8 @@ -44,7 +44,11 @@ =20 /****************** INCLUDE FILES SECTION ********************************= ***/ =20 +#ifdef __KERNEL__ #include <linux/types.h> +#else +#include "local.h" +#endif =20 /****************** CONSTANT AND MACRO SECTION ***************************= ***/ =20 --- bcsp_debug.h 2001/06/13 12:14:44 1.4 +++ bcsp_debug.h 2001/08/16 13:01:22 1.5 @@ -44,7 +44,11 @@ =20 /****************** INCLUDE FILES SECTION ********************************= ***/ =20 +#ifdef __KERNEL__ #include <linux/bluetooth/btdebug.h> +#else +#include "btdebug.h" +#endif =20 /****************** CONSTANT AND MACRO SECTION ***************************= ***/ =20 |