diff options
author | Christian Lamparter <chunkeey@web.de> | 2008-10-18 17:04:15 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-11-10 15:10:15 -0500 |
commit | 9a8675d712d57da0993ad2e43b168c9585892097 (patch) | |
tree | 9f7bc455c1acfcc0efce0b8092c93759d88814ce /drivers/net/wireless/p54/p54common.c | |
parent | 4ceb7b6ae2cf5b6e32c403a11bb54081bf8f8b83 (diff) |
p54: introduce new names for device firmwares
Johannes thought it would have been a good idea to change the firmware names.
Note: we still have fallbacks in case our users don't want to "break their running system",
but we won't advertise them with MODULE_FIRMWARE.
Signed-off-by: Christian Lamparter <chunkeey@web.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/p54/p54common.c')
-rw-r--r-- | drivers/net/wireless/p54/p54common.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/net/wireless/p54/p54common.c b/drivers/net/wireless/p54/p54common.c index cf04c721a012..8e5e1abfe88e 100644 --- a/drivers/net/wireless/p54/p54common.c +++ b/drivers/net/wireless/p54/p54common.c | |||
@@ -214,6 +214,11 @@ int p54_parse_firmware(struct ieee80211_hw *dev, const struct firmware *fw) | |||
214 | printk(KERN_INFO "p54: FW rev %s - Softmac protocol %x.%x\n", | 214 | printk(KERN_INFO "p54: FW rev %s - Softmac protocol %x.%x\n", |
215 | fw_version, priv->fw_var >> 8, priv->fw_var & 0xff); | 215 | fw_version, priv->fw_var >> 8, priv->fw_var & 0xff); |
216 | 216 | ||
217 | if (priv->fw_var < 0x500) | ||
218 | printk(KERN_INFO "p54: you are using an obsolete firmware. " | ||
219 | "visit http://wireless.kernel.org/en/users/Drivers/p54 " | ||
220 | "and grab one for \"kernel >= 2.6.28\"!\n"); | ||
221 | |||
217 | if (priv->fw_var >= 0x300) { | 222 | if (priv->fw_var >= 0x300) { |
218 | /* Firmware supports QoS, use it! */ | 223 | /* Firmware supports QoS, use it! */ |
219 | priv->tx_stats[4].limit = 3; | 224 | priv->tx_stats[4].limit = 3; |