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