From: Szymon Janc <szymon.janc@gmail.com>
To: Jakub Tyszkowski <jakub.tyszkowski@tieto.com>
Cc: linux-bluetooth@vger.kernel.org
Subject: Re: [PATCH 1/2] android/gatt: Refactor characteristic notify function
Date: Thu, 27 Mar 2014 20:14:20 +0100 [thread overview]
Message-ID: <139596586.UBkxGm1SCv@athlon> (raw)
In-Reply-To: <1395858216-26503-1-git-send-email-jakub.tyszkowski@tieto.com>
Hi Jakub,
On Wednesday 26 March 2014 19:23:35 Jakub Tyszkowski wrote:
> This removes redundant status from function parameter list, as sent
> status is different than success only when there is no characteristic.
> ---
> android/gatt.c | 18 +++++-------------
> 1 file changed, 5 insertions(+), 13 deletions(-)
>
> diff --git a/android/gatt.c b/android/gatt.c
> index d7c7c93..cad7e1a 100644
> --- a/android/gatt.c
> +++ b/android/gatt.c
> @@ -951,13 +951,12 @@ static void handle_client_get_included_service(const
> void *buf, uint16_t len)
>
> static void send_client_char_notify(const struct characteristic *ch,
> int32_t conn_id,
> - const struct service *service,
> - uint8_t status)
> + const struct service *service)
> {
> struct hal_ev_gatt_client_get_characteristic ev;
>
> memset(&ev, 0, sizeof(ev));
> - ev.status = status;
> + ev.status = ch ? HAL_STATUS_SUCCESS : HAL_STATUS_FAILED;
>
> if (ch) {
> ev.char_prop = ch->ch.properties;
> @@ -1026,11 +1025,9 @@ static void discover_char_cb(uint8_t status, GSList
> *characteristics,
>
> if (!queue_isempty(data->service->chars))
> send_client_char_notify(queue_peek_head(data->service->chars),
> - data->conn_id, data->service,
> - HAL_STATUS_SUCCESS);
> + data->conn_id, data->service);
> else
> - send_client_char_notify(NULL, data->conn_id, data->service,
> - HAL_STATUS_FAILED);
> + send_client_char_notify(NULL, data->conn_id, data->service);
>
> free(data);
> }
> @@ -1126,12 +1123,7 @@ static void handle_client_get_characteristic(const
> void *buf, uint16_t len) else
> ch = queue_peek_head(srvc->chars);
>
> - if (ch)
> - send_client_char_notify(ch, dev->conn_id, srvc,
> - HAL_STATUS_SUCCESS);
> - else
> - send_client_char_notify(NULL, dev->conn_id, srvc,
> - HAL_STATUS_FAILED);
> + send_client_char_notify(ch, dev->conn_id, srvc);
>
> status = HAL_STATUS_SUCCESS;
Both patches applied. Thanks.
Although I had to manually fix whitespace issue:
.git/rebase-apply/patch:19: space before tab in indent.
data->conn_id, data->service);
fatal: 1 line adds whitespace errors.
so please pay attention for this in future.
--
Szymon K. Janc
szymon.janc@gmail.com
prev parent reply other threads:[~2014-03-27 19:14 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-26 18:23 [PATCH 1/2] android/gatt: Refactor characteristic notify function Jakub Tyszkowski
2014-03-26 18:23 ` [PATCH 2/2] android/gatt: Remove redundant queue check Jakub Tyszkowski
2014-03-27 19:14 ` Szymon Janc [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=139596586.UBkxGm1SCv@athlon \
--to=szymon.janc@gmail.com \
--cc=jakub.tyszkowski@tieto.com \
--cc=linux-bluetooth@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox