|
From: Mattias A. <mat...@us...> - 2001-04-25 17:52:03
|
The following file was modified in linux/include/linux/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
btcommon.h 1.72 1.73=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
* added pid in bt_session struct
* added ioctl define for reading transmit power level
* cleanup
The diff of the modified file(s):
--- btcommon.h 2001/04/20 14:33:07 1.72
+++ btcommon.h 2001/04/25 17:52:02 1.73
@@ -134,7 +134,7 @@
#define BT_SDP_REQUEST _IOW(BT_IOC_MAGIC, 0x0d, bt_sdp_request)
=20
=20
-/* ioctls executing HCI commands */
+/* Ioctls executing HCI commands */
=20
/* Link Control Command */
#define HCIINQUIRY _IOWR(BT_IOC_MAGIC, 0x10, inquiry_results)
@@ -148,7 +148,7 @@
/* Link Policy Commands */
#define HCISWITCHROLE _IOW(BT_IOC_MAGIC, 0x20, u8[7])
=20
-/* Host Controler & Basband Commands */
+/* Host Controller & Baseband Commands */
#define HCIRESET _IO(BT_IOC_MAGIC, 0x30)
#define HCIFLUSH _IO(BT_IOC_MAGIC, 0x31)
#define HCICREATE_NEW_UNIT_KEY _IOR(BT_IOC_MAGIC, 0x32, s32)
@@ -165,6 +165,7 @@
#define HCIREAD_ENCRYPTION_MODE _IOR(BT_IOC_MAGIC, 0x3d, s32)
#define HCIWRITE_ENCRYPTION_MODE _IOWR(BT_IOC_MAGIC, 0x3e, s32)
#define HCISET_EVENT_FILTER _IOW(BT_IOC_MAGIC, 0x3f, u8[3])
+#define HCIREADTRANSMITPOWERLEVEL _IOWR(BT_IOC_MAGIC, 0x40, u8)
=20
/* Informational Parameters */
#define HCIREADLOCALBDADDR _IOR(BT_IOC_MAGIC, 0x45, u8[6])
@@ -462,6 +463,7 @@
{
/* general */
struct tty_struct *upper_tty;
+ unsigned int pid;
volatile s32 connect_status;
volatile s32 disconnect_status;
/* hci link */
|