All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jakub Kicinski <moorray@wp.pl>
To: Xose Vazquez Perez <xose.vazquez@gmail.com>
Cc: linux-wireless@vger.kernel.org, users@rt2x00.serialmonkey.com
Subject: Re: [rt2x00-users] [PATCH 3.10-rc] wireless: rt2x00: rt2800: fix hardware antenna diversity for RT5370G
Date: Tue, 7 May 2013 23:00:28 +0200	[thread overview]
Message-ID: <20130507230028.6f13df5c@north> (raw)
In-Reply-To: <1367957010-9496-1-git-send-email-xose.vazquez@gmail.com>

Hi...

seems like you have not addressed this patch directly to John, which I
think you should do [1].

[1] http://wireless.kernel.org/en/developers/Documentation/SubmittingPatches

On Tue,  7 May 2013 22:03:30 +0200, Xose Vazquez Perez wrote:
>RT5370G has hardware RX antenna diversity like RT5390R.
>
>based on 2012_03_22_RT5572_Linux_STA_v2.6.0.0_DPO

Note that this is not the latest vendor driver for RT5572, hw antenna
diversity didn't change though, so the logic seems correct.

>Cc: Ivo van Doorn <IvDoorn@gmail.com>
>Cc: Gertjan van Wingerde <gwingerde@gmail.com>
>Cc: Helmut Schaa <helmut.schaa@googlemail.com>
>Cc: John W. Linville <linville@tuxdriver.com>
>Cc: users@rt2x00.serialmonkey.com
>Cc: linux-wireless@vger.kernel.org
>Tested-by: wnewbie72@gmail.com
>Signed-off-by: Xose Vazquez Perez <xose.vazquez@gmail.com>
>---
> drivers/net/wireless/rt2x00/rt2800.h    | 3 ++-
> drivers/net/wireless/rt2x00/rt2800lib.c | 8 +++++---
> 2 files changed, 7 insertions(+), 4 deletions(-)
>
>diff --git a/drivers/net/wireless/rt2x00/rt2800.h b/drivers/net/wireless/rt2x00/rt2800.h
>index a7630d5..6e84eee 100644
>--- a/drivers/net/wireless/rt2x00/rt2800.h
>+++ b/drivers/net/wireless/rt2x00/rt2800.h
>@@ -89,7 +89,8 @@
> #define REV_RT3090E			0x0211
> #define REV_RT3390E			0x0211
> #define REV_RT5390F			0x0502
>-#define REV_RT5390R			0x1502
>+#define REV_RT5370G			0x0503 /* hardware RX antenna diversity */
>+#define REV_RT5390R			0x1502 /* hardware RX antenna diversity */

Line > 80 chars. hardware -> hw should be enough?

> #define REV_RT5592C			0x0221
> 
> #define DEFAULT_RSSI_OFFSET		120
>diff --git a/drivers/net/wireless/rt2x00/rt2800lib.c b/drivers/net/wireless/rt2x00/rt2800lib.c
>index b52d70c..e202ec7 100644
>--- a/drivers/net/wireless/rt2x00/rt2800lib.c
>+++ b/drivers/net/wireless/rt2x00/rt2800lib.c
>@@ -4311,8 +4311,9 @@ static int rt2800_init_bbp(struct rt2x00_dev *rt2x00dev)
> 			rt2800_register_write(rt2x00dev, GPIO_CTRL, reg);
> 		}
> 
>-		/* This chip has hardware antenna diversity*/
>-		if (rt2x00_rt_rev_gte(rt2x00dev, RT5390, REV_RT5390R)) {
>+		/* These chips have hardware RX antenna diversity */
>+		if (rt2x00_rt_rev_gte(rt2x00dev, RT5390, REV_RT5390R) ||
>+			rt2x00_rt_rev_gte(rt2x00dev, RT5390, REV_RT5370G)) {

Indentation of conditions seems wrong...  Please run 
checkpatch.pl --strict on your changes.

Thanks for sending the patch! (:

  -- Kuba

  reply	other threads:[~2013-05-07 21:00 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-05-07 20:03 [PATCH 3.10-rc] wireless: rt2x00: rt2800: fix hardware antenna diversity for RT5370G Xose Vazquez Perez
2013-05-07 21:00 ` Jakub Kicinski [this message]
2013-05-07 22:30 ` Gertjan van Wingerde
2013-06-02 15:38   ` [rt2x00-users] " Jakub Kicinski

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=20130507230028.6f13df5c@north \
    --to=moorray@wp.pl \
    --cc=linux-wireless@vger.kernel.org \
    --cc=users@rt2x00.serialmonkey.com \
    --cc=xose.vazquez@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.