|
From: Anders J. <and...@us...> - 2001-10-10 15:00:43
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- btcommon.h 1.86 1.87=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: * Defined GET_LINE macro. The diff of the modified file(s): --- btcommon.h 2001/10/05 11:54:24 1.86 +++ btcommon.h 2001/10/10 15:00:42 1.87 @@ -94,7 +94,6 @@ =20 /* extract line number from tty */ #define GET_TTYLINE(tty) (MINOR(tty->device) - tty->driver.minor_start) - /****************** Defines realted to the bluetooth implementation ******= ***/ =20 #define SERIAL_PORT_PROFILE 0 @@ -106,9 +105,14 @@ #define PICONET_BROADCAST 2 =20 #define MAX_NBR_OF_CONNECTIONS 7 + +/* Macro to extract the linenumber in a conid used by applications/stack. = */ +#define GET_LINE(conID) ( ((conID & 0xff00) >> 8) ) + /* Define to control usage of the security manager */=20=20 =20 /****************** Defines realated to the management of the bt-driver **= ***/ + =20 #define BT_NBR_DATAPORTS 7 #define BT_NBR_CTRLPORTS 1 |