|
From: Mattias A. <mat...@us...> - 2001-06-13 12:38:11
|
The following file was modified in apps/bluetooth/experimental:
Name Old version New version Comment
---- ----------- ----------- -------
btd.c 1.19 1.20=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
* added call to init_failed if init_stack failed...
The diff of the modified file(s):
--- btd.c 2001/06/08 09:55:47 1.19
+++ btd.c 2001/06/13 12:18:00 1.20
@@ -300,7 +300,8 @@
if (do_reset)
reset_hw();
=20
- init_stack(bt_cfd, atoi(speedstr));
+ if (init_stack(bt_cfd, atoi(speedstr)) < 0)
+ init_failed(bt_cfd, phys_fd, atoi(speedstr));
=20
if (do_hwinit)
init_hw(bt_cfd, phys_fd, atoi(speedstr));
|