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