commit | 76e190cd4b3b9e79096df153edb04092433a797b | [log] [tgz] |
---|---|---|
author | Michael Buesch <mb@bu3sch.de> | Fri Feb 20 19:26:27 2009 +0100 |
committer | John W. Linville <linville@tuxdriver.com> | Fri Feb 27 14:52:52 2009 -0500 |
tree | d9235b56b77e4272db32affaf39950e08c56ade8 | |
parent | ac1ea3959f4c6694e92fe18a2ec72cfbed0c71fa [diff] |
b43: Convert usage of b43_phy_maskset() This patch converts code to use the new b43_phy_maskset() API. The semantic patch that makes this change is as follows: // <smpl> @@ expression dev, addr, mask, set; @@ -b43_phy_write(dev, addr, (b43_phy_read(dev, addr) & mask) | set); +b43_phy_maskset(dev, addr, mask, set); // </smpl> Signed-off-by: Michael Buesch <mb@bu3sch.de> Signed-off-by: John W. Linville <linville@tuxdriver.com>