|
From: Peter K. <pk...@us...> - 2001-04-20 14:33:37
|
The following file was modified in linux/drivers/char/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- bluetooth.c 1.170 1.171=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Added ioctl (BTHWVENDOR) to retrieve the vendor of the hardware. The diff of the modified file(s): --- bluetooth.c 2001/04/19 00:22:11 1.170 +++ bluetooth.c 2001/04/20 14:33:07 1.171 @@ -688,6 +688,10 @@ put_user(bt_stack_initiated, (s32*)arg); break; =20 + case BTHWVENDOR: + copy_to_user((u8*)arg, bt_hw_vendor(), strlen(bt_hw_vendor())+1); + break; + case BTSENDTESTDATA: copy_from_user(&tmp, (s32*)arg, 4); copy_from_user(&utmp, (s32*)arg + 1, 4); |