From: Szymon Janc <szymon.janc@tieto.com>
To: "linux-bluetooth@vger.kernel.org" <linux-bluetooth@vger.kernel.org>
Subject: Re: [PATCH 1/4] sap-u8500: Fix build errors due to unaligned memory access
Date: Mon, 10 Dec 2012 15:12:42 +0100 [thread overview]
Message-ID: <1614369.eQZKrof3SG@uw000953> (raw)
In-Reply-To: <1353665354-32178-1-git-send-email-szymon.janc@tieto.com>
On Friday 23 of November 2012 12:09:11 Janc Szymon wrote:
> This fix following compilation error on ARM.
>
> CC profiles/sap/sap-u8500.o
> profiles/sap/sap-u8500.c: In function recv_card_status:
> profiles/sap/sap-u8500.c:323:16: error: cast increases required
> alignment of target type [-Werror=cast-align]
> profiles/sap/sap-u8500.c: In function recv_response:
> profiles/sap/sap-u8500.c:423:12: error: cast increases required
> alignment of target type [-Werror=cast-align]
> cc1: all warnings being treated as errors
> ---
> profiles/sap/sap-u8500.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/profiles/sap/sap-u8500.c b/profiles/sap/sap-u8500.c
> index f07209d..b1aee57 100644
> --- a/profiles/sap/sap-u8500.c
> +++ b/profiles/sap/sap-u8500.c
> @@ -313,16 +313,16 @@ static void recv_status(uint32_t status)
>
> static void recv_card_status(uint32_t status, uint8_t *param)
> {
> - uint32_t *card_status;
> + uint32_t card_status;
> uint8_t result;
> uint8_t iccrs;
>
> if (status != STE_STATUS_OK)
> return;
>
> - card_status = (uint32_t *)param;
> + memcpy(&card_status, param, sizeof(card_status));
>
> - if (get_sap_reader_status(*card_status, &iccrs) < 0)
> + if (get_sap_reader_status(card_status, &iccrs) < 0)
> result = SAP_RESULT_ERROR_NO_REASON;
> else
> result = get_sap_result(STE_GET_STATUS_MSG, status);
> @@ -420,7 +420,7 @@ static void recv_response(struct ste_message *msg)
> }
>
> param = msg->payload;
> - status = *(uint32_t *)param;
> + memcpy(&status, param, sizeof(status));
> param += sizeof(status);
>
> SAP_VDBG("status 0x%x", status);
>
ping
next prev parent reply other threads:[~2012-12-10 14:12 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-11-23 10:09 [PATCH 1/4] sap-u8500: Fix build errors due to unaligned memory access Szymon Janc
2012-11-23 10:09 ` [PATCH 2/4] sdp: " Szymon Janc
2012-11-23 10:09 ` [PATCH 3/4] monitor: " Szymon Janc
2012-11-23 10:09 ` [PATCH 4/4] sdpd-request: " Szymon Janc
2012-12-10 14:12 ` Szymon Janc [this message]
2012-12-11 5:43 ` [PATCH 1/4] sap-u8500: " Johan Hedberg
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=1614369.eQZKrof3SG@uw000953 \
--to=szymon.janc@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