This changes 'adapter' to 'bluetooth' as name of HAL interface.
This name matches name fond in bluetooth.h where all interfaces
are defined.
---
android/client/if-bt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/android/client/if-bt.c b/android/client/if-bt.c
index fb1b3f3..4c501a5 100644
--- a/android/client/if-bt.c
+++ b/android/client/if-bt.c
@@ -777,6 +777,6 @@ static struct method methods[] = {
};
const struct interface bluetooth_if = {
- .name = "adapter",
+ .name = "bluetooth",
.methods = methods
};
--
1.7.9.5
Hi Jerzy,
On Mon, Nov 04, 2013, Jerzy Kasenberg wrote:
> This changes 'adapter' to 'bluetooth' as name of HAL interface.
> This name matches name fond in bluetooth.h where all interfaces
> are defined.
> ---
> android/client/if-bt.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Applied. Thanks.
Johan