* [PATCH] android/gatt: Remove redundant find function parameter
@ 2014-04-29 10:31 Jakub Tyszkowski
2014-04-30 9:22 ` Szymon Janc
0 siblings, 1 reply; 2+ messages in thread
From: Jakub Tyszkowski @ 2014-04-29 10:31 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Jakub Tyszkowski
As client and server apps id is guaranteed to be unique, there is no
need for this search function parameter.
---
android/gatt.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/android/gatt.c b/android/gatt.c
index 0e81e7d..b2c1a02 100644
--- a/android/gatt.c
+++ b/android/gatt.c
@@ -1242,8 +1242,7 @@ static void handle_client_unregister(const void *buf, uint16_t len)
HAL_OP_GATT_CLIENT_UNREGISTER, status);
}
-static struct app_connection *find_conn(const bdaddr_t *addr, int32_t app_id,
- int32_t app_type)
+static struct app_connection *find_conn(const bdaddr_t *addr, int32_t app_id)
{
struct app_connection conn_match;
struct gatt_device *dev = NULL;
@@ -2875,7 +2874,7 @@ static void handle_client_register_for_notification(const void *buf,
android2bdaddr(&cmd->bdaddr, &addr);
- conn = find_conn(&addr, cmd->client_if, APP_CLIENT);
+ conn = find_conn(&addr, cmd->client_if);
if (!conn) {
status = HAL_STATUS_FAILED;
goto failed;
@@ -2980,7 +2979,7 @@ static void handle_client_deregister_for_notification(const void *buf,
android2bdaddr(&cmd->bdaddr, &addr);
- conn = find_conn(&addr, cmd->client_if, APP_CLIENT);
+ conn = find_conn(&addr, cmd->client_if);
if (!conn) {
status = HAL_STATUS_FAILED;
goto failed;
--
1.9.1
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] android/gatt: Remove redundant find function parameter
2014-04-29 10:31 [PATCH] android/gatt: Remove redundant find function parameter Jakub Tyszkowski
@ 2014-04-30 9:22 ` Szymon Janc
0 siblings, 0 replies; 2+ messages in thread
From: Szymon Janc @ 2014-04-30 9:22 UTC (permalink / raw)
To: Jakub Tyszkowski; +Cc: linux-bluetooth
Hi Jakub,
On Tuesday 29 of April 2014 12:31:08 Jakub Tyszkowski wrote:
> As client and server apps id is guaranteed to be unique, there is no
> need for this search function parameter.
> ---
> android/gatt.c | 7 +++----
> 1 file changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/android/gatt.c b/android/gatt.c
> index 0e81e7d..b2c1a02 100644
> --- a/android/gatt.c
> +++ b/android/gatt.c
> @@ -1242,8 +1242,7 @@ static void handle_client_unregister(const void *buf, uint16_t len)
> HAL_OP_GATT_CLIENT_UNREGISTER, status);
> }
>
> -static struct app_connection *find_conn(const bdaddr_t *addr, int32_t app_id,
> - int32_t app_type)
> +static struct app_connection *find_conn(const bdaddr_t *addr, int32_t app_id)
> {
> struct app_connection conn_match;
> struct gatt_device *dev = NULL;
> @@ -2875,7 +2874,7 @@ static void handle_client_register_for_notification(const void *buf,
>
> android2bdaddr(&cmd->bdaddr, &addr);
>
> - conn = find_conn(&addr, cmd->client_if, APP_CLIENT);
> + conn = find_conn(&addr, cmd->client_if);
> if (!conn) {
> status = HAL_STATUS_FAILED;
> goto failed;
> @@ -2980,7 +2979,7 @@ static void handle_client_deregister_for_notification(const void *buf,
>
> android2bdaddr(&cmd->bdaddr, &addr);
>
> - conn = find_conn(&addr, cmd->client_if, APP_CLIENT);
> + conn = find_conn(&addr, cmd->client_if);
> if (!conn) {
> status = HAL_STATUS_FAILED;
> goto failed;
>
Applied, thanks.
--
Best regards,
Szymon Janc
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-04-30 9:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-29 10:31 [PATCH] android/gatt: Remove redundant find function parameter Jakub Tyszkowski
2014-04-30 9:22 ` Szymon Janc
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox