b43: remove leftover code from old devices support
authorRafał Miłecki <zajec5@gmail.com>
Fri, 20 Jun 2014 15:22:00 +0000 (17:22 +0200)
committerJohn W. Linville <linville@tuxdriver.com>
Fri, 20 Jun 2014 18:13:45 +0000 (14:13 -0400)
Old devices (A-PHY or B-PHY) are supposed to be supported by b43legacy.
We keep phy_a.c as it's needed for G-PHY which shares some design.

Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/b43/main.c
drivers/net/wireless/b43/phy_a.h
drivers/net/wireless/b43/phy_common.c

index 4b662d0..4164afa 100644 (file)
@@ -4306,15 +4306,6 @@ static int b43_phy_versioning(struct b43_wldev *dev)
        phy_type = (tmp & B43_PHYVER_TYPE) >> B43_PHYVER_TYPE_SHIFT;
        phy_rev = (tmp & B43_PHYVER_VERSION);
        switch (phy_type) {
-       case B43_PHYTYPE_A:
-               if (phy_rev >= 4)
-                       unsupported = 1;
-               break;
-       case B43_PHYTYPE_B:
-               if (phy_rev != 2 && phy_rev != 4 && phy_rev != 6
-                   && phy_rev != 7)
-                       unsupported = 1;
-               break;
        case B43_PHYTYPE_G:
                if (phy_rev > 9)
                        unsupported = 1;
index 5cfaab7..f7d0d92 100644 (file)
@@ -123,8 +123,4 @@ struct b43_phy_a {
  */
 void b43_phy_inita(struct b43_wldev *dev);
 
-
-struct b43_phy_operations;
-extern const struct b43_phy_operations b43_phyops_a;
-
 #endif /* LINUX_B43_PHY_A_H_ */
index 2d05b59..ce486ee 100644 (file)
@@ -45,9 +45,6 @@ int b43_phy_allocate(struct b43_wldev *dev)
        phy->ops = NULL;
 
        switch (phy->type) {
-       case B43_PHYTYPE_A:
-               phy->ops = &b43_phyops_a;
-               break;
        case B43_PHYTYPE_G:
                phy->ops = &b43_phyops_g;
                break;