sim/hcisocket: correct teardown device index

Parameter of HCIDEVDOWN should be the corresponding device id, not 0

Signed-off-by: chao an <anchao@xiaomi.com>
This commit is contained in:
chao an 2023-02-03 21:13:05 +08:00 committed by Xiang Xiao
parent 7625126c91
commit edfae1fe21

View File

@ -196,7 +196,7 @@ int host_bthcisock_open(int dev_idx)
/* We must bring the device down before binding to user channel */
err = ioctl(fd, HCIDEVDOWN, 0);
err = ioctl(fd, HCIDEVDOWN, dev_idx);
if (err < 0)
{
return err;