Linux bluetooth development
 help / color / mirror / Atom feed
From: Johan Hedberg <johan.hedberg@gmail.com>
To: "Kim, Ben Young Tae" <ytkim@qca.qualcomm.com>
Cc: "linux-bluetooth@vger.kernel.org"
	<linux-bluetooth@vger.kernel.org>,
	Marcel Holtmann <marcel@holtmann.org>
Subject: Re: [PATCH] Bluetooth:btusb:fix incorrect type in initializer
Date: Fri, 6 Mar 2015 10:55:17 +0200	[thread overview]
Message-ID: <20150306085517.GA20795@t440s.lan> (raw)
In-Reply-To: <E72C4779-837E-45DC-8256-AAA4F01DE182@qca.qualcomm.com>

Hi,

On Tue, Mar 03, 2015, Kim, Ben Young Tae wrote:
> This fixes the following sparse warning:
> 
> drivers/bluetooth/btusb.c:2677:11: warning: incorrect type in initializer (different base types)
> drivers/bluetooth/btusb.c:2677:11:    expected restricted __le32 [usertype] rom_version
> drivers/bluetooth/btusb.c:2677:11:    got int
> drivers/bluetooth/btusb.c:2678:11: warning: incorrect type in initializer (different base types)
> drivers/bluetooth/btusb.c:2678:11:    expected restricted __le32 [usertype] rom_version
> drivers/bluetooth/btusb.c:2678:11:    got int
> drivers/bluetooth/btusb.c:2679:11: warning: incorrect type in initializer (different base types)
> drivers/bluetooth/btusb.c:2679:11:    expected restricted __le32 [usertype] rom_version
> drivers/bluetooth/btusb.c:2679:11:    got int
> drivers/bluetooth/btusb.c:2680:11: warning: incorrect type in initializer (different base types)
> drivers/bluetooth/btusb.c:2680:11:    expected restricted __le32 [usertype] rom_version
> drivers/bluetooth/btusb.c:2680:11:    got int
> drivers/bluetooth/btusb.c:2681:11: warning: incorrect type in initializer (different base types)
> drivers/bluetooth/btusb.c:2681:11:    expected restricted __le32 [usertype] rom_version
> drivers/bluetooth/btusb.c:2681:11:    got int
> drivers/bluetooth/btusb.c:2805:17: warning: restricted __le16 degrades to integer
> drivers/bluetooth/btusb.c:2805:37: warning: restricted __le32 degrades to integer
> drivers/bluetooth/btusb.c:2806:17: warning: restricted __le16 degrades to integer
> drivers/bluetooth/btusb.c:2806:39: warning: restricted __le32 degrades to integer
> 
> Signed-off-by: Ben Young Tae Kim <ytkim@qca.qualcomm.com>
> ---
>  drivers/bluetooth/btusb.c | 14 +++++++-------
>  1 file changed, 7 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
> index 0833054..f65cd44 100644
> --- a/drivers/bluetooth/btusb.c
> +++ b/drivers/bluetooth/btusb.c
> @@ -2674,11 +2674,11 @@ struct qca_device_info {
>  };
>  
>  static const struct qca_device_info qca_devices_table[] = {
> -	{ 0x00000100, 20, 4, 10 }, /* Rome 1.0 */
> -	{ 0x00000101, 20, 4, 10 }, /* Rome 1.1 */
> -	{ 0x00000201, 28, 4, 18 }, /* Rome 2.1 */
> -	{ 0x00000300, 28, 4, 18 }, /* Rome 3.0 */
> -	{ 0x00000302, 28, 4, 18 }, /* Rome 3.2 */
> +	{ cpu_to_le32(0x00000100), 20, 4, 10 }, /* Rome 1.0 */
> +	{ cpu_to_le32(0x00000101), 20, 4, 10 }, /* Rome 1.1 */
> +	{ cpu_to_le32(0x00000201), 28, 4, 18 }, /* Rome 2.1 */
> +	{ cpu_to_le32(0x00000300), 28, 4, 18 }, /* Rome 3.0 */
> +	{ cpu_to_le32(0x00000302), 28, 4, 18 }, /* Rome 3.2 */
>  };

Since "struct qca_device_info" doesn't describe raw protocol data I
don't think it should contain protocol endianness values, i.e. the
rom_version member should be u32 instead of __le32.

Johan

  reply	other threads:[~2015-03-06  8:55 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-02-05 18:40 [PATCH v5] Bluetooth: Add support for QCA ROME chipset family Kim, Ben Young Tae
2015-02-10 16:56 ` Kim, Ben Young Tae
2015-02-12 19:35 ` Marcel Holtmann
2015-02-12 21:40   ` Kim, Ben Young Tae
2015-02-14 23:35     ` Marcel Holtmann
2015-02-15  0:03       ` Kim, Ben Young Tae
2015-03-03 14:01 ` [PATCH] Bluetooth:btusb:fix incorrect type in initializer Kim, Ben Young Tae
2015-03-06  8:55   ` Johan Hedberg [this message]
2015-03-06  9:15     ` Kim, Ben Young Tae
2015-03-06  9:30       ` Johan Hedberg
2015-03-06 15:49       ` Marcel Holtmann
2015-03-09 23:37         ` Kim, Ben Young Tae
2015-03-10  0:10           ` Marcel Holtmann

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=20150306085517.GA20795@t440s.lan \
    --to=johan.hedberg@gmail.com \
    --cc=linux-bluetooth@vger.kernel.org \
    --cc=marcel@holtmann.org \
    --cc=ytkim@qca.qualcomm.com \
    /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