|
From: Peter K. <pk...@us...> - 2001-05-17 14:53:17
|
The following file was modified in linux/drivers/char/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
hci_vendor.c 1.34 1.35=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
Differ the vendor name for CSR depending on whether BCSP is
used or not.
The diff of the modified file(s):
--- hci_vendor.c 2001/05/15 15:19:58 1.34
+++ hci_vendor.c 2001/05/17 14:53:15 1.35
@@ -1037,7 +1037,11 @@
char*
bt_hw_vendor(void)
{
- return "CSR";
+#ifdef CONFIG_BLUETOOTH_USE_BCSP
+ return "CSR (BCSP)";
+#else
+ return "CSR (H4)";
+#endif
}
=20
#elif defined(CONFIG_BLUETOOTH_INFINEON_BMI)
|