|
From: Peter K. <pk...@us...> - 2001-07-31 17:59:27
|
The following file was modified in linux/drivers/char/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
bcsp_sequence.c 1.15 1.16=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
Fixed a couple of compiler warnings.
The diff of the modified file(s):
--- bcsp_sequence.c 2001/07/20 06:43:16 1.15
+++ bcsp_sequence.c 2001/07/31 17:59:25 1.16
@@ -50,6 +50,8 @@
#include <linux/timer.h>
=20
#include <linux/bluetooth/sysdep-2.1.h>
+#include <linux/bluetooth/btmem.h>
+#include <linux/bluetooth/hci.h>
#include <linux/bluetooth/bcsp.h>
#include <linux/bluetooth/bcsp_debug.h>
=20
@@ -106,8 +108,6 @@
=20
static u8 rtx_count =3D BCSP_RTX_MAX;
=20
-static u32 got_packet =3D FALSE;
-
static struct timer_list resend_timer;
=20
static u8 resend_timer_active =3D FALSE;
@@ -175,7 +175,6 @@
expected_rxseq, BCSP_GET_SEQ(bcsp));
=20
} else {
- s32 i;
printk("seq out-of-order [exp:%d, got:%d], send ack\n",
expected_rxseq, BCSP_GET_SEQ(bcsp));
send_ack();
|