]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
b43: LCN-PHY: put tables functions in correct file
authorRafał Miłecki <zajec5@gmail.com>
Wed, 31 Aug 2011 21:36:17 +0000 (23:36 +0200)
committerJohn W. Linville <linville@tuxdriver.com>
Tue, 13 Sep 2011 19:53:45 +0000 (15:53 -0400)
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/b43/phy_lcn.c
drivers/net/wireless/b43/tables_phy_lcn.c

index b617e1f8ca2845f3531ad6f5c61fe46a02b141c1..9e575774e192096081dd03aec040ef2f6c574e80 100644 (file)
@@ -137,14 +137,6 @@ static void b43_phy_lcn_afe_set_unset(struct b43_wldev *dev)
        b43_phy_write(dev, B43_PHY_LCN_AFE_CTL1, afe_ctl1);
 }
 
-static void b43_phy_lcn_clean_0x18_table(struct b43_wldev *dev)
-{
-       u8 i;
-
-       for (i = 0; i < 0x80; i++)
-               b43_lcntab_write(dev, B43_LCNTAB32(0x18, i), 0x80000);
-}
-
 static void b43_phy_lcn_clear_0x07_table(struct b43_wldev *dev)
 {
        u8 i;
@@ -319,8 +311,6 @@ static int b43_phy_lcn_op_init(struct b43_wldev *dev)
        b43_phy_maskset(dev, 0x663, 0xFF00, 0x64);
 
        b43_phy_lcn_tables_init(dev);
-       /* TODO: various tables ops here */
-       b43_phy_lcn_clean_0x18_table(dev);
 
        b43_phy_lcn_pre_radio_init(dev);
        b43_phy_lcn_clear_0x07_table(dev);
index 916d3f194f422f3f79ace51a43f378e549b88faf..f74c00a34ad5754b45a3fb3625ad3c7fda35fbed 100644 (file)
@@ -445,7 +445,7 @@ void b43_lcntab_write_bulk(struct b43_wldev *dev, u32 offset,
 #define lcntab_upload(dev, offset, data) do { \
                b43_lcntab_write_bulk(dev, offset, ARRAY_SIZE(data), data); \
        } while (0)
-void b43_phy_lcn_tables_init(struct b43_wldev *dev)
+static void b43_phy_lcn_upload_static_tables(struct b43_wldev *dev)
 {
        lcntab_upload(dev, B43_LCNTAB16(0x02, 0), b43_lcntab_0x02);
        lcntab_upload(dev, B43_LCNTAB16(0x01, 0), b43_lcntab_0x01);
@@ -462,3 +462,18 @@ void b43_phy_lcn_tables_init(struct b43_wldev *dev)
        lcntab_upload(dev, B43_LCNTAB16(0x00, 0), b43_lcntab_0x00);
        lcntab_upload(dev, B43_LCNTAB32(0x18, 0), b43_lcntab_0x18);
 }
+
+static void b43_phy_lcn_clean_0x18_table(struct b43_wldev *dev)
+{
+       u8 i;
+
+       for (i = 0; i < 0x80; i++)
+               b43_lcntab_write(dev, B43_LCNTAB32(0x18, i), 0x80000);
+}
+
+void b43_phy_lcn_tables_init(struct b43_wldev *dev)
+{
+       b43_phy_lcn_upload_static_tables(dev);
+       /* TODO: various tables ops here */
+       b43_phy_lcn_clean_0x18_table(dev);
+}