Skip to content

Commit

Permalink
iwlwifi: define firmware file name once
Browse files Browse the repository at this point in the history
string repeated for definition of ucode firmware file and in preparation for
multiple firmware files need to consolidate location for their definition.

Signed-off-by: Jay Sternberg <jay.e.sternberg@intel.com>
Acked-by: Tomas Winkler <tomas.winler@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Jay Sternberg authored and John W. Linville committed Oct 31, 2008
1 parent 4acf074 commit 4e062f9
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions drivers/net/wireless/iwlwifi/iwl-5000.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@

#define IWL5000_UCODE_API "-1"

#define IWL5000_MODULE_FIRMWARE "iwlwifi-5000" IWL5000_UCODE_API ".ucode"

static const u16 iwl5000_default_queue_to_tx_fifo[] = {
IWL_TX_FIFO_AC3,
IWL_TX_FIFO_AC2,
Expand Down Expand Up @@ -1544,7 +1546,7 @@ static struct iwl_mod_params iwl50_mod_params = {

struct iwl_cfg iwl5300_agn_cfg = {
.name = "5300AGN",
.fw_name = "iwlwifi-5000" IWL5000_UCODE_API ".ucode",
.fw_name = IWL5000_MODULE_FIRMWARE,
.sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
.ops = &iwl5000_ops,
.eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
Expand All @@ -1553,7 +1555,7 @@ struct iwl_cfg iwl5300_agn_cfg = {

struct iwl_cfg iwl5100_bg_cfg = {
.name = "5100BG",
.fw_name = "iwlwifi-5000" IWL5000_UCODE_API ".ucode",
.fw_name = IWL5000_MODULE_FIRMWARE,
.sku = IWL_SKU_G,
.ops = &iwl5000_ops,
.eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
Expand All @@ -1562,7 +1564,7 @@ struct iwl_cfg iwl5100_bg_cfg = {

struct iwl_cfg iwl5100_abg_cfg = {
.name = "5100ABG",
.fw_name = "iwlwifi-5000" IWL5000_UCODE_API ".ucode",
.fw_name = IWL5000_MODULE_FIRMWARE,
.sku = IWL_SKU_A|IWL_SKU_G,
.ops = &iwl5000_ops,
.eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
Expand All @@ -1571,7 +1573,7 @@ struct iwl_cfg iwl5100_abg_cfg = {

struct iwl_cfg iwl5100_agn_cfg = {
.name = "5100AGN",
.fw_name = "iwlwifi-5000" IWL5000_UCODE_API ".ucode",
.fw_name = IWL5000_MODULE_FIRMWARE,
.sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
.ops = &iwl5000_ops,
.eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
Expand All @@ -1580,14 +1582,14 @@ struct iwl_cfg iwl5100_agn_cfg = {

struct iwl_cfg iwl5350_agn_cfg = {
.name = "5350AGN",
.fw_name = "iwlwifi-5000" IWL5000_UCODE_API ".ucode",
.fw_name = IWL5000_MODULE_FIRMWARE,
.sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
.ops = &iwl5000_ops,
.eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
.mod_params = &iwl50_mod_params,
};

MODULE_FIRMWARE("iwlwifi-5000" IWL5000_UCODE_API ".ucode");
MODULE_FIRMWARE(IWL5000_MODULE_FIRMWARE);

module_param_named(disable50, iwl50_mod_params.disable, int, 0444);
MODULE_PARM_DESC(disable50,
Expand Down

0 comments on commit 4e062f9

Please sign in to comment.