Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bba4d409 authored by Rafał Miłecki's avatar Rafał Miłecki Committed by John W. Linville
Browse files

b43: remove leftover code from old devices support



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: default avatarRafał Miłecki <zajec5@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent e48b1790
Loading
Loading
Loading
Loading
+0 −9
Original line number Diff line number Diff line
@@ -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;
+0 −4
Original line number Diff line number Diff line
@@ -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_ */
+0 −3
Original line number Diff line number Diff line
@@ -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;