diff options
author | Josh Boyer <jwboyer@fedoraproject.org> | 2013-09-30 09:39:49 -0400 |
---|---|---|
committer | Josh Boyer <jwboyer@fedoraproject.org> | 2013-09-30 09:39:52 -0400 |
commit | 7211d465cc9f959579c55550a4316b1bb0b4f615 (patch) | |
tree | 147e76facfe93260a75fc2534a99e370f4f991dd | |
parent | 084247e9b3add461f1a5e35cc03fd641bed38d24 (diff) | |
download | kernel-7211d465cc9f959579c55550a4316b1bb0b4f615.tar.gz kernel-7211d465cc9f959579c55550a4316b1bb0b4f615.tar.xz kernel-7211d465cc9f959579c55550a4316b1bb0b4f615.zip |
Add support for rf3070 devices from Stanislaw Gruszka (rhbz 974072)
-rw-r--r-- | kernel.spec | 7 | ||||
-rw-r--r-- | rt2800-add-support-for-rf3070.patch | 84 |
2 files changed, 91 insertions, 0 deletions
diff --git a/kernel.spec b/kernel.spec index 8227e2450..17c7226b8 100644 --- a/kernel.spec +++ b/kernel.spec @@ -742,6 +742,9 @@ Patch25109: skge-fix-invalid-value-passed-to-pci_unmap_sigle.patch Patch25114: elevator-Fix-a-race-in-elevator-switching-and-md.patch Patch25115: elevator-acquire-q-sysfs_lock-in-elevator_change.patch +#rhbz 974072 +Patch25116: rt2800-add-support-for-rf3070.patch + # END OF PATCH DEFINITIONS %endif @@ -1445,6 +1448,9 @@ ApplyPatch skge-fix-invalid-value-passed-to-pci_unmap_sigle.patch ApplyPatch elevator-Fix-a-race-in-elevator-switching-and-md.patch ApplyPatch elevator-acquire-q-sysfs_lock-in-elevator_change.patch +#rhbz 974072 +ApplyPatch rt2800-add-support-for-rf3070.patch + # END OF PATCH APPLICATIONS %endif @@ -2250,6 +2256,7 @@ fi # || || %changelog * Mon Sep 30 2013 Josh Boyer <jwboyer@fedoraproject.org> +- Add support for rf3070 devices from Stanislaw Gruszka (rhbz 974072) - Drop VC_MUTE patch (rhbz 859485) * Mon Sep 30 2013 Josh Boyer <jwboyer@fedoraproject.org> - 3.12.0-0.rc3.git0.1 diff --git a/rt2800-add-support-for-rf3070.patch b/rt2800-add-support-for-rf3070.patch new file mode 100644 index 000000000..a07037862 --- /dev/null +++ b/rt2800-add-support-for-rf3070.patch @@ -0,0 +1,84 @@ +Add support for new RF chip ID: 3070. It seems to be the same as 5370, +maybe vendor just put wrong value on the eeprom, but add this id anyway +since devices with it showed on the marked. + +Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com> + +diff --git a/drivers/net/wireless/rt2x00/rt2800.h b/drivers/net/wireless/rt2x00/rt2800.h +index fa33b5e..e3eb952 100644 +--- a/drivers/net/wireless/rt2x00/rt2800.h ++++ b/drivers/net/wireless/rt2x00/rt2800.h +@@ -52,6 +52,7 @@ + * RF3322 2.4G 2T2R(RT3352/RT3371/RT3372/RT3391/RT3392) + * RF3053 2.4G/5G 3T3R(RT3883/RT3563/RT3573/RT3593/RT3662) + * RF5592 2.4G/5G 2T2R ++ * RF3070 2.4G 1T1R + * RF5360 2.4G 1T1R + * RF5370 2.4G 1T1R + * RF5390 2.4G 1T1R +@@ -70,6 +71,7 @@ + #define RF3322 0x000c + #define RF3053 0x000d + #define RF5592 0x000f ++#define RF3070 0x3070 + #define RF3290 0x3290 + #define RF5360 0x5360 + #define RF5370 0x5370 +diff --git a/drivers/net/wireless/rt2x00/rt2800lib.c b/drivers/net/wireless/rt2x00/rt2800lib.c +index 88ce656..d2f638f 100644 +--- a/drivers/net/wireless/rt2x00/rt2800lib.c ++++ b/drivers/net/wireless/rt2x00/rt2800lib.c +@@ -3152,6 +3152,7 @@ static void rt2800_config_channel(struct rt2x00_dev *rt2x00dev, + case RF3322: + rt2800_config_channel_rf3322(rt2x00dev, conf, rf, info); + break; ++ case RF3070: + case RF5360: + case RF5370: + case RF5372: +@@ -3166,7 +3167,8 @@ static void rt2800_config_channel(struct rt2x00_dev *rt2x00dev, + rt2800_config_channel_rf2xxx(rt2x00dev, conf, rf, info); + } + +- if (rt2x00_rf(rt2x00dev, RF3290) || ++ if (rt2x00_rf(rt2x00dev, RF3070) || ++ rt2x00_rf(rt2x00dev, RF3290) || + rt2x00_rf(rt2x00dev, RF3322) || + rt2x00_rf(rt2x00dev, RF5360) || + rt2x00_rf(rt2x00dev, RF5370) || +@@ -4264,6 +4266,7 @@ void rt2800_vco_calibration(struct rt2x00_dev *rt2x00dev) + rt2800_rfcsr_write(rt2x00dev, 7, rfcsr); + break; + case RF3053: ++ case RF3070: + case RF3290: + case RF5360: + case RF5370: +@@ -7021,6 +7024,7 @@ static int rt2800_init_eeprom(struct rt2x00_dev *rt2x00dev) + case RF3022: + case RF3052: + case RF3053: ++ case RF3070: + case RF3290: + case RF3320: + case RF3322: +@@ -7543,6 +7547,7 @@ static int rt2800_probe_hw_mode(struct rt2x00_dev *rt2x00dev) + rt2x00_rf(rt2x00dev, RF2020) || + rt2x00_rf(rt2x00dev, RF3021) || + rt2x00_rf(rt2x00dev, RF3022) || ++ rt2x00_rf(rt2x00dev, RF3070) || + rt2x00_rf(rt2x00dev, RF3290) || + rt2x00_rf(rt2x00dev, RF3320) || + rt2x00_rf(rt2x00dev, RF3322) || +@@ -7671,6 +7676,7 @@ static int rt2800_probe_hw_mode(struct rt2x00_dev *rt2x00dev) + case RF3320: + case RF3052: + case RF3053: ++ case RF3070: + case RF3290: + case RF5360: + case RF5370: +-- +To unsubscribe from this list: send the line "unsubscribe linux-wireless" in +the body of a message to majordomo@vger.kernel.org +More majordomo info at http://vger.kernel.org/majordomo-info.html
\ No newline at end of file |