|
From: Mattias A. <mat...@us...> - 2001-06-13 12:25:03
|
The following file was modified in apps/bluetooth/experimental: Name Old version New version Comment ---- ----------- ----------- ------- bt_if.h 1.12 1.13=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: * added return val in init_stack * minor change The diff of the modified file(s): --- bt_if.h 2001/06/08 09:38:39 1.12 +++ bt_if.h 2001/06/13 12:25:02 1.13 @@ -147,7 +147,8 @@ #define BTREADREMOTEBDADDR _IOR(BT_IOC_MAGIC, 0x07, unsigned char[6]) #define BTRESETPHYSICALHW _IO(BT_IOC_MAGIC, 0x08) #define BTISINITIATED _IOR(BT_IOC_MAGIC, 0x09, int) -#define BTHWVENDOR _IOR(BT_IOC_MAGIC, 0x0A, char[20]) +#define BTHWVENDOR _IOR(BT_IOC_MAGIC, 0x0a, char[20]) + #define BT_GETCACHEDLINKKEY _IOWR(BT_IOC_MAGIC, 0x0e, unsigned char[22]) /* =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D */ /* Ioctls for executing HCI commands */ @@ -279,7 +280,7 @@ * Init/shutdown and control of stack=20 */ =20 -void init_stack(int bt_cfd, int spd); +int init_stack(int bt_cfd, int spd); int bt_isinitiated(int bt_cfd); void shutdown_stack(int bt_cfd); #ifndef BT_USERSTACK |