diff options
author | Michael Buesch <mb@bu3sch.de> | 2008-12-27 12:26:39 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-01-29 15:59:41 -0500 |
commit | c557289cb8ea063bd09db88f8a687a841556e291 (patch) | |
tree | 5e77f69574c5c33cb8c5e70b24deb81c8b0eb7fc /drivers/net/wireless/b43 | |
parent | 98a8d1a8f22237e2aa7db5453df0f68935a5ede0 (diff) |
b43: Change schedule for old-fw support removal
The scheduled date for the removal of old fw support was in July 2008.
However, we're not going to remove the support unless it causes a major
headache. So change the schedule from "July 2008" to "when it causes headaches".
Signed-off-by: Michael Buesch <mb@bu3sch.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/b43')
-rw-r--r-- | drivers/net/wireless/b43/main.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/drivers/net/wireless/b43/main.c b/drivers/net/wireless/b43/main.c index c627bac87a40..5ca55dcd0345 100644 --- a/drivers/net/wireless/b43/main.c +++ b/drivers/net/wireless/b43/main.c | |||
@@ -1954,8 +1954,9 @@ static void b43_print_fw_helptext(struct b43_wl *wl, bool error) | |||
1954 | const char *text; | 1954 | const char *text; |
1955 | 1955 | ||
1956 | text = "You must go to " | 1956 | text = "You must go to " |
1957 | "http://linuxwireless.org/en/users/Drivers/b43#devicefirmware " | 1957 | "http://wireless.kernel.org/en/users/Drivers/b43#devicefirmware " |
1958 | "and download the latest firmware (version 4).\n"; | 1958 | "and download the correct firmware for this driver version. " |
1959 | "Please carefully read all instructions on this website.\n"; | ||
1959 | if (error) | 1960 | if (error) |
1960 | b43err(wl, text); | 1961 | b43err(wl, text); |
1961 | else | 1962 | else |
@@ -2271,8 +2272,11 @@ static int b43_upload_microcode(struct b43_wldev *dev) | |||
2271 | } | 2272 | } |
2272 | 2273 | ||
2273 | if (b43_is_old_txhdr_format(dev)) { | 2274 | if (b43_is_old_txhdr_format(dev)) { |
2275 | /* We're over the deadline, but we keep support for old fw | ||
2276 | * until it turns out to be in major conflict with something new. */ | ||
2274 | b43warn(dev->wl, "You are using an old firmware image. " | 2277 | b43warn(dev->wl, "You are using an old firmware image. " |
2275 | "Support for old firmware will be removed in July 2008.\n"); | 2278 | "Support for old firmware will be removed soon " |
2279 | "(official deadline was July 2008).\n"); | ||
2276 | b43_print_fw_helptext(dev->wl, 0); | 2280 | b43_print_fw_helptext(dev->wl, 0); |
2277 | } | 2281 | } |
2278 | 2282 | ||