aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/b43
diff options
context:
space:
mode:
authorRafał Miłecki <zajec5@gmail.com>2010-12-09 14:55:59 -0500
committerJohn W. Linville <linville@tuxdriver.com>2010-12-13 15:23:29 -0500
commitea85ffd627b5da346b348d784fafec0ce4632d4d (patch)
treef3cf9423235004ebbd2ed8882c70177b4ce8be6b /drivers/net/wireless/b43
parentf61afc291a64d0362258f5a1ab45c828fe15ab04 (diff)
b43: N-PHY: one more fix for order of tables initialization
I missed that part in previous reordering. Signed-off-by: Rafał Miłecki <zajec5@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/b43')
-rw-r--r--drivers/net/wireless/b43/tables_nphy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/b43/tables_nphy.c b/drivers/net/wireless/b43/tables_nphy.c
index df61c1610e39..dc8ef09a8552 100644
--- a/drivers/net/wireless/b43/tables_nphy.c
+++ b/drivers/net/wireless/b43/tables_nphy.c
@@ -1835,12 +1835,12 @@ void b43_nphy_rev0_1_2_tables_init(struct b43_wldev *dev)
1835 /* Volatile tables */ 1835 /* Volatile tables */
1836 ntab_upload(dev, B43_NTAB_BDI, b43_ntab_bdi); 1836 ntab_upload(dev, B43_NTAB_BDI, b43_ntab_bdi);
1837 ntab_upload(dev, B43_NTAB_PILOTLT, b43_ntab_pilotlt); 1837 ntab_upload(dev, B43_NTAB_PILOTLT, b43_ntab_pilotlt);
1838 ntab_upload(dev, B43_NTAB_C0_GAINCTL, b43_ntab_gainctl0);
1839 ntab_upload(dev, B43_NTAB_C1_GAINCTL, b43_ntab_gainctl1);
1838 ntab_upload(dev, B43_NTAB_C0_ESTPLT, b43_ntab_estimatepowerlt0); 1840 ntab_upload(dev, B43_NTAB_C0_ESTPLT, b43_ntab_estimatepowerlt0);
1839 ntab_upload(dev, B43_NTAB_C1_ESTPLT, b43_ntab_estimatepowerlt1); 1841 ntab_upload(dev, B43_NTAB_C1_ESTPLT, b43_ntab_estimatepowerlt1);
1840 ntab_upload(dev, B43_NTAB_C0_ADJPLT, b43_ntab_adjustpower0); 1842 ntab_upload(dev, B43_NTAB_C0_ADJPLT, b43_ntab_adjustpower0);
1841 ntab_upload(dev, B43_NTAB_C1_ADJPLT, b43_ntab_adjustpower1); 1843 ntab_upload(dev, B43_NTAB_C1_ADJPLT, b43_ntab_adjustpower1);
1842 ntab_upload(dev, B43_NTAB_C0_GAINCTL, b43_ntab_gainctl0);
1843 ntab_upload(dev, B43_NTAB_C1_GAINCTL, b43_ntab_gainctl1);
1844 ntab_upload(dev, B43_NTAB_C0_IQLT, b43_ntab_iqlt0); 1844 ntab_upload(dev, B43_NTAB_C0_IQLT, b43_ntab_iqlt0);
1845 ntab_upload(dev, B43_NTAB_C1_IQLT, b43_ntab_iqlt1); 1845 ntab_upload(dev, B43_NTAB_C1_IQLT, b43_ntab_iqlt1);
1846 ntab_upload(dev, B43_NTAB_C0_LOFEEDTH, b43_ntab_loftlt0); 1846 ntab_upload(dev, B43_NTAB_C0_LOFEEDTH, b43_ntab_loftlt0);