|
From: Mattias A. <mat...@us...> - 2001-03-30 09:45:47
|
The following file was modified in linux/include/linux/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
sdp.h 1.25 1.26=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
* added include to l2cap.h
The diff of the modified file(s):
--- sdp.h 2001/03/06 11:05:23 1.25
+++ sdp.h 2001/03/30 09:45:45 1.26
@@ -47,9 +47,11 @@
#ifdef __KERNEL__
#include <linux/types.h>
#include <linux/bluetooth/btcommon.h>
+#include <linux/bluetooth/l2cap.h>
#else
#include "btcommon.h"
#include "local.h"
+#include "l2cap.h"
#endif
=20
/****************** CONSTANT AND MACRO SECTION ***************************=
***/
@@ -64,6 +66,7 @@
/* bt_ctrl data structure). =
*/
/* index =3D The SDP connection data structure. =
*/
/*------------------------------------------------------------------------=
--*/
+
#define CREATE_SDP_ID(line, index) ( ((SDP_LAYER << 16) & 0xffff0000) | ((=
line << 8) & 0x0000ff00) | (index & 0xff) )
#define GET_SDPINDEX(conID) ( (conID & 0xff) )
#define GET_SDPLINE(conID) ( ((conID & 0xff00) >> 8) )
|