mirror of
https://github.com/apache/nuttx.git
synced 2026-05-21 21:34:07 +08:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user