|
From: Mattias A. <mat...@us...> - 2001-03-30 11:00:49
|
The following file was modified in linux/drivers/char/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
bluetooth.c 1.157 1.158=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
* renamed m/s switch control function
The diff of the modified file(s):
--- bluetooth.c 2001/03/30 10:09:38 1.157
+++ bluetooth.c 2001/03/30 11:00:41 1.158
@@ -1037,16 +1037,17 @@
return l2ca_getinfo(bd, type);
}
=20
+ /* force m/s switch as server */
case BTSETMSSWITCH :
{
- u8 mode;
+ u8 enable;
=20
GET_USER(tmp, (s32*)arg);
=20
- mode =3D (u8)(tmp & 0xff);
+ enable =3D (u8)(tmp & 0xff);
=20
- BT_DRIVER("BTSETMSSWITCH : %d\n", mode);
- hci_set_msswitch_mode(mode);
+ BT_DRIVER("BTSETMSSWITCH : %d\n", enable);
+ hci_force_msswitch(enable);
}
=20=09=09
default:=09=09
|