From: Jiri Slaby <jslaby@suse.cz>
To: Xose Vazquez Perez <xose.vazquez@gmail.com>
Cc: "Canek Peláez Valdés" <canek@ciencias.unam.mx>,
stable@vger.kernel.org, "Stanislaw Gruszka" <sgruszka@redhat.com>,
"Helmut Schaa" <helmut.schaa@googlemail.com>,
"John W. Linville" <linville@tuxdriver.com>,
users@rt2x00.serialmonkey.com, linux-wireless@vger.kernel.org
Subject: Re: [PATCH -stable] rt2x00: support Ralink 5362.
Date: Fri, 31 Oct 2014 10:47:12 +0100 [thread overview]
Message-ID: <54535AA0.6070907@suse.cz> (raw)
In-Reply-To: <1414667897-2277-1-git-send-email-xose.vazquez@gmail.com>
On 10/30/2014, 12:18 PM, Xose Vazquez Perez wrote:
> From: Canek Peláez Valdés <canek@ciencias.unam.mx>
Hi, what is this, please? No commit message, no upstream SHA, we cannot
take the two as they stand...
> Cc: stable@vger.kernel.org
> Acked-by: Stanislaw Gruszka <sgruszka@redhat.com>
> Cc: Stanislaw Gruszka <sgruszka@redhat.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
> Signed-off-by: Canek Peláez Valdés <canek@ciencias.unam.mx>
> Signed-off-by: John W. Linville <linville@tuxdriver.com>
> ---
> drivers/net/wireless/rt2x00/rt2800.h | 4 +++-
> drivers/net/wireless/rt2x00/rt2800lib.c | 6 ++++++
> 2 files changed, 9 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/net/wireless/rt2x00/rt2800.h b/drivers/net/wireless/rt2x00/rt2800.h
> index a394a9a..b7434df 100644
> --- a/drivers/net/wireless/rt2x00/rt2800.h
> +++ b/drivers/net/wireless/rt2x00/rt2800.h
> @@ -52,6 +52,7 @@
> * RF5592 2.4G/5G 2T2R
> * RF3070 2.4G 1T1R
> * RF5360 2.4G 1T1R
> + * RF5362 2.4G 1T1R
> * RF5370 2.4G 1T1R
> * RF5390 2.4G 1T1R
> */
> @@ -72,6 +73,7 @@
> #define RF3070 0x3070
> #define RF3290 0x3290
> #define RF5360 0x5360
> +#define RF5362 0x5362
> #define RF5370 0x5370
> #define RF5372 0x5372
> #define RF5390 0x5390
> @@ -2145,7 +2147,7 @@ struct mac_iveiv_entry {
> /* Bits [7-4] for RF3320 (RT3370/RT3390), on other chipsets reserved */
> #define RFCSR3_PA1_BIAS_CCK FIELD8(0x70)
> #define RFCSR3_PA2_CASCODE_BIAS_CCKK FIELD8(0x80)
> -/* Bits for RF3290/RF5360/RF5370/RF5372/RF5390/RF5392 */
> +/* Bits for RF3290/RF5360/RF5362/RF5370/RF5372/RF5390/RF5392 */
> #define RFCSR3_VCOCAL_EN FIELD8(0x80)
> /* Bits for RF3050 */
> #define RFCSR3_BIT1 FIELD8(0x02)
> diff --git a/drivers/net/wireless/rt2x00/rt2800lib.c b/drivers/net/wireless/rt2x00/rt2800lib.c
> index 893c9d5..9f57a2d 100644
> --- a/drivers/net/wireless/rt2x00/rt2800lib.c
> +++ b/drivers/net/wireless/rt2x00/rt2800lib.c
> @@ -3186,6 +3186,7 @@ static void rt2800_config_channel(struct rt2x00_dev *rt2x00dev,
> break;
> case RF3070:
> case RF5360:
> + case RF5362:
> case RF5370:
> case RF5372:
> case RF5390:
> @@ -3203,6 +3204,7 @@ static void rt2800_config_channel(struct rt2x00_dev *rt2x00dev,
> rt2x00_rf(rt2x00dev, RF3290) ||
> rt2x00_rf(rt2x00dev, RF3322) ||
> rt2x00_rf(rt2x00dev, RF5360) ||
> + rt2x00_rf(rt2x00dev, RF5362) ||
> rt2x00_rf(rt2x00dev, RF5370) ||
> rt2x00_rf(rt2x00dev, RF5372) ||
> rt2x00_rf(rt2x00dev, RF5390) ||
> @@ -4317,6 +4319,7 @@ void rt2800_vco_calibration(struct rt2x00_dev *rt2x00dev)
> case RF3070:
> case RF3290:
> case RF5360:
> + case RF5362:
> case RF5370:
> case RF5372:
> case RF5390:
> @@ -7095,6 +7098,7 @@ static int rt2800_init_eeprom(struct rt2x00_dev *rt2x00dev)
> case RF3320:
> case RF3322:
> case RF5360:
> + case RF5362:
> case RF5370:
> case RF5372:
> case RF5390:
> @@ -7551,6 +7555,7 @@ static int rt2800_probe_hw_mode(struct rt2x00_dev *rt2x00dev)
> case RF3320:
> case RF3322:
> case RF5360:
> + case RF5362:
> case RF5370:
> case RF5372:
> case RF5390:
> @@ -7680,6 +7685,7 @@ static int rt2800_probe_hw_mode(struct rt2x00_dev *rt2x00dev)
> case RF3070:
> case RF3290:
> case RF5360:
> + case RF5362:
> case RF5370:
> case RF5372:
> case RF5390:
>
--
js
suse labs
next prev parent reply other threads:[~2014-10-31 9:47 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-30 11:18 [PATCH -stable] rt2x00: support Ralink 5362 Xose Vazquez Perez
2014-10-31 9:47 ` Jiri Slaby [this message]
2014-10-31 9:51 ` Stanislaw Gruszka
2014-11-03 11:05 ` Luis Henriques
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=54535AA0.6070907@suse.cz \
--to=jslaby@suse.cz \
--cc=canek@ciencias.unam.mx \
--cc=helmut.schaa@googlemail.com \
--cc=linux-wireless@vger.kernel.org \
--cc=linville@tuxdriver.com \
--cc=sgruszka@redhat.com \
--cc=stable@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).