提交 8ce9d6c7 编写于 作者: J Jeff Kirsher

e1000e: make function tables const

The initial function and setup tables can be marked as constant.
Reported-by: NStephen Hemminger <shemminger@vyatta.com>
Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
Tested-by: NAaron Brown <aaron.f.brown@intel.com>
上级 70f14381
...@@ -1441,7 +1441,7 @@ static void e1000_clear_hw_cntrs_80003es2lan(struct e1000_hw *hw) ...@@ -1441,7 +1441,7 @@ static void e1000_clear_hw_cntrs_80003es2lan(struct e1000_hw *hw)
er32(ICRXDMTC); er32(ICRXDMTC);
} }
static struct e1000_mac_operations es2_mac_ops = { static const struct e1000_mac_operations es2_mac_ops = {
.read_mac_addr = e1000_read_mac_addr_80003es2lan, .read_mac_addr = e1000_read_mac_addr_80003es2lan,
.id_led_init = e1000e_id_led_init, .id_led_init = e1000e_id_led_init,
.blink_led = e1000e_blink_led_generic, .blink_led = e1000e_blink_led_generic,
...@@ -1464,7 +1464,7 @@ static struct e1000_mac_operations es2_mac_ops = { ...@@ -1464,7 +1464,7 @@ static struct e1000_mac_operations es2_mac_ops = {
.setup_led = e1000e_setup_led_generic, .setup_led = e1000e_setup_led_generic,
}; };
static struct e1000_phy_operations es2_phy_ops = { static const struct e1000_phy_operations es2_phy_ops = {
.acquire = e1000_acquire_phy_80003es2lan, .acquire = e1000_acquire_phy_80003es2lan,
.check_polarity = e1000_check_polarity_m88, .check_polarity = e1000_check_polarity_m88,
.check_reset_block = e1000e_check_reset_block_generic, .check_reset_block = e1000e_check_reset_block_generic,
...@@ -1482,7 +1482,7 @@ static struct e1000_phy_operations es2_phy_ops = { ...@@ -1482,7 +1482,7 @@ static struct e1000_phy_operations es2_phy_ops = {
.cfg_on_link_up = e1000_cfg_on_link_up_80003es2lan, .cfg_on_link_up = e1000_cfg_on_link_up_80003es2lan,
}; };
static struct e1000_nvm_operations es2_nvm_ops = { static const struct e1000_nvm_operations es2_nvm_ops = {
.acquire = e1000_acquire_nvm_80003es2lan, .acquire = e1000_acquire_nvm_80003es2lan,
.read = e1000e_read_nvm_eerd, .read = e1000e_read_nvm_eerd,
.release = e1000_release_nvm_80003es2lan, .release = e1000_release_nvm_80003es2lan,
...@@ -1492,7 +1492,7 @@ static struct e1000_nvm_operations es2_nvm_ops = { ...@@ -1492,7 +1492,7 @@ static struct e1000_nvm_operations es2_nvm_ops = {
.write = e1000_write_nvm_80003es2lan, .write = e1000_write_nvm_80003es2lan,
}; };
struct e1000_info e1000_es2_info = { const struct e1000_info e1000_es2_info = {
.mac = e1000_80003es2lan, .mac = e1000_80003es2lan,
.flags = FLAG_HAS_HW_VLAN_FILTER .flags = FLAG_HAS_HW_VLAN_FILTER
| FLAG_HAS_JUMBO_FRAMES | FLAG_HAS_JUMBO_FRAMES
......
...@@ -1927,7 +1927,7 @@ static void e1000_clear_hw_cntrs_82571(struct e1000_hw *hw) ...@@ -1927,7 +1927,7 @@ static void e1000_clear_hw_cntrs_82571(struct e1000_hw *hw)
er32(ICRXDMTC); er32(ICRXDMTC);
} }
static struct e1000_mac_operations e82571_mac_ops = { static const struct e1000_mac_operations e82571_mac_ops = {
/* .check_mng_mode: mac type dependent */ /* .check_mng_mode: mac type dependent */
/* .check_for_link: media type dependent */ /* .check_for_link: media type dependent */
.id_led_init = e1000e_id_led_init, .id_led_init = e1000e_id_led_init,
...@@ -1949,7 +1949,7 @@ static struct e1000_mac_operations e82571_mac_ops = { ...@@ -1949,7 +1949,7 @@ static struct e1000_mac_operations e82571_mac_ops = {
.read_mac_addr = e1000_read_mac_addr_82571, .read_mac_addr = e1000_read_mac_addr_82571,
}; };
static struct e1000_phy_operations e82_phy_ops_igp = { static const struct e1000_phy_operations e82_phy_ops_igp = {
.acquire = e1000_get_hw_semaphore_82571, .acquire = e1000_get_hw_semaphore_82571,
.check_polarity = e1000_check_polarity_igp, .check_polarity = e1000_check_polarity_igp,
.check_reset_block = e1000e_check_reset_block_generic, .check_reset_block = e1000e_check_reset_block_generic,
...@@ -1967,7 +1967,7 @@ static struct e1000_phy_operations e82_phy_ops_igp = { ...@@ -1967,7 +1967,7 @@ static struct e1000_phy_operations e82_phy_ops_igp = {
.cfg_on_link_up = NULL, .cfg_on_link_up = NULL,
}; };
static struct e1000_phy_operations e82_phy_ops_m88 = { static const struct e1000_phy_operations e82_phy_ops_m88 = {
.acquire = e1000_get_hw_semaphore_82571, .acquire = e1000_get_hw_semaphore_82571,
.check_polarity = e1000_check_polarity_m88, .check_polarity = e1000_check_polarity_m88,
.check_reset_block = e1000e_check_reset_block_generic, .check_reset_block = e1000e_check_reset_block_generic,
...@@ -1985,7 +1985,7 @@ static struct e1000_phy_operations e82_phy_ops_m88 = { ...@@ -1985,7 +1985,7 @@ static struct e1000_phy_operations e82_phy_ops_m88 = {
.cfg_on_link_up = NULL, .cfg_on_link_up = NULL,
}; };
static struct e1000_phy_operations e82_phy_ops_bm = { static const struct e1000_phy_operations e82_phy_ops_bm = {
.acquire = e1000_get_hw_semaphore_82571, .acquire = e1000_get_hw_semaphore_82571,
.check_polarity = e1000_check_polarity_m88, .check_polarity = e1000_check_polarity_m88,
.check_reset_block = e1000e_check_reset_block_generic, .check_reset_block = e1000e_check_reset_block_generic,
...@@ -2003,7 +2003,7 @@ static struct e1000_phy_operations e82_phy_ops_bm = { ...@@ -2003,7 +2003,7 @@ static struct e1000_phy_operations e82_phy_ops_bm = {
.cfg_on_link_up = NULL, .cfg_on_link_up = NULL,
}; };
static struct e1000_nvm_operations e82571_nvm_ops = { static const struct e1000_nvm_operations e82571_nvm_ops = {
.acquire = e1000_acquire_nvm_82571, .acquire = e1000_acquire_nvm_82571,
.read = e1000e_read_nvm_eerd, .read = e1000e_read_nvm_eerd,
.release = e1000_release_nvm_82571, .release = e1000_release_nvm_82571,
...@@ -2013,7 +2013,7 @@ static struct e1000_nvm_operations e82571_nvm_ops = { ...@@ -2013,7 +2013,7 @@ static struct e1000_nvm_operations e82571_nvm_ops = {
.write = e1000_write_nvm_82571, .write = e1000_write_nvm_82571,
}; };
struct e1000_info e1000_82571_info = { const struct e1000_info e1000_82571_info = {
.mac = e1000_82571, .mac = e1000_82571,
.flags = FLAG_HAS_HW_VLAN_FILTER .flags = FLAG_HAS_HW_VLAN_FILTER
| FLAG_HAS_JUMBO_FRAMES | FLAG_HAS_JUMBO_FRAMES
...@@ -2034,7 +2034,7 @@ struct e1000_info e1000_82571_info = { ...@@ -2034,7 +2034,7 @@ struct e1000_info e1000_82571_info = {
.nvm_ops = &e82571_nvm_ops, .nvm_ops = &e82571_nvm_ops,
}; };
struct e1000_info e1000_82572_info = { const struct e1000_info e1000_82572_info = {
.mac = e1000_82572, .mac = e1000_82572,
.flags = FLAG_HAS_HW_VLAN_FILTER .flags = FLAG_HAS_HW_VLAN_FILTER
| FLAG_HAS_JUMBO_FRAMES | FLAG_HAS_JUMBO_FRAMES
...@@ -2052,7 +2052,7 @@ struct e1000_info e1000_82572_info = { ...@@ -2052,7 +2052,7 @@ struct e1000_info e1000_82572_info = {
.nvm_ops = &e82571_nvm_ops, .nvm_ops = &e82571_nvm_ops,
}; };
struct e1000_info e1000_82573_info = { const struct e1000_info e1000_82573_info = {
.mac = e1000_82573, .mac = e1000_82573,
.flags = FLAG_HAS_HW_VLAN_FILTER .flags = FLAG_HAS_HW_VLAN_FILTER
| FLAG_HAS_WOL | FLAG_HAS_WOL
...@@ -2070,7 +2070,7 @@ struct e1000_info e1000_82573_info = { ...@@ -2070,7 +2070,7 @@ struct e1000_info e1000_82573_info = {
.nvm_ops = &e82571_nvm_ops, .nvm_ops = &e82571_nvm_ops,
}; };
struct e1000_info e1000_82574_info = { const struct e1000_info e1000_82574_info = {
.mac = e1000_82574, .mac = e1000_82574,
.flags = FLAG_HAS_HW_VLAN_FILTER .flags = FLAG_HAS_HW_VLAN_FILTER
| FLAG_HAS_MSIX | FLAG_HAS_MSIX
...@@ -2091,7 +2091,7 @@ struct e1000_info e1000_82574_info = { ...@@ -2091,7 +2091,7 @@ struct e1000_info e1000_82574_info = {
.nvm_ops = &e82571_nvm_ops, .nvm_ops = &e82571_nvm_ops,
}; };
struct e1000_info e1000_82583_info = { const struct e1000_info e1000_82583_info = {
.mac = e1000_82583, .mac = e1000_82583,
.flags = FLAG_HAS_HW_VLAN_FILTER .flags = FLAG_HAS_HW_VLAN_FILTER
| FLAG_HAS_WOL | FLAG_HAS_WOL
......
...@@ -406,9 +406,9 @@ struct e1000_info { ...@@ -406,9 +406,9 @@ struct e1000_info {
u32 pba; u32 pba;
u32 max_hw_frame_size; u32 max_hw_frame_size;
s32 (*get_variants)(struct e1000_adapter *); s32 (*get_variants)(struct e1000_adapter *);
struct e1000_mac_operations *mac_ops; const struct e1000_mac_operations *mac_ops;
struct e1000_phy_operations *phy_ops; const struct e1000_phy_operations *phy_ops;
struct e1000_nvm_operations *nvm_ops; const struct e1000_nvm_operations *nvm_ops;
}; };
/* hardware capability, feature, and workaround flags */ /* hardware capability, feature, and workaround flags */
...@@ -506,17 +506,17 @@ extern unsigned int copybreak; ...@@ -506,17 +506,17 @@ extern unsigned int copybreak;
extern char *e1000e_get_hw_dev_name(struct e1000_hw *hw); extern char *e1000e_get_hw_dev_name(struct e1000_hw *hw);
extern struct e1000_info e1000_82571_info; extern const struct e1000_info e1000_82571_info;
extern struct e1000_info e1000_82572_info; extern const struct e1000_info e1000_82572_info;
extern struct e1000_info e1000_82573_info; extern const struct e1000_info e1000_82573_info;
extern struct e1000_info e1000_82574_info; extern const struct e1000_info e1000_82574_info;
extern struct e1000_info e1000_82583_info; extern const struct e1000_info e1000_82583_info;
extern struct e1000_info e1000_ich8_info; extern const struct e1000_info e1000_ich8_info;
extern struct e1000_info e1000_ich9_info; extern const struct e1000_info e1000_ich9_info;
extern struct e1000_info e1000_ich10_info; extern const struct e1000_info e1000_ich10_info;
extern struct e1000_info e1000_pch_info; extern const struct e1000_info e1000_pch_info;
extern struct e1000_info e1000_pch2_info; extern const struct e1000_info e1000_pch2_info;
extern struct e1000_info e1000_es2_info; extern const struct e1000_info e1000_es2_info;
extern s32 e1000_read_pba_string_generic(struct e1000_hw *hw, u8 *pba_num, extern s32 e1000_read_pba_string_generic(struct e1000_hw *hw, u8 *pba_num,
u32 pba_num_size); u32 pba_num_size);
......
...@@ -4011,7 +4011,7 @@ static void e1000_clear_hw_cntrs_ich8lan(struct e1000_hw *hw) ...@@ -4011,7 +4011,7 @@ static void e1000_clear_hw_cntrs_ich8lan(struct e1000_hw *hw)
} }
} }
static struct e1000_mac_operations ich8_mac_ops = { static const struct e1000_mac_operations ich8_mac_ops = {
.id_led_init = e1000e_id_led_init, .id_led_init = e1000e_id_led_init,
/* check_mng_mode dependent on mac type */ /* check_mng_mode dependent on mac type */
.check_for_link = e1000_check_for_copper_link_ich8lan, .check_for_link = e1000_check_for_copper_link_ich8lan,
...@@ -4030,7 +4030,7 @@ static struct e1000_mac_operations ich8_mac_ops = { ...@@ -4030,7 +4030,7 @@ static struct e1000_mac_operations ich8_mac_ops = {
/* id_led_init dependent on mac type */ /* id_led_init dependent on mac type */
}; };
static struct e1000_phy_operations ich8_phy_ops = { static const struct e1000_phy_operations ich8_phy_ops = {
.acquire = e1000_acquire_swflag_ich8lan, .acquire = e1000_acquire_swflag_ich8lan,
.check_reset_block = e1000_check_reset_block_ich8lan, .check_reset_block = e1000_check_reset_block_ich8lan,
.commit = NULL, .commit = NULL,
...@@ -4044,7 +4044,7 @@ static struct e1000_phy_operations ich8_phy_ops = { ...@@ -4044,7 +4044,7 @@ static struct e1000_phy_operations ich8_phy_ops = {
.write_reg = e1000e_write_phy_reg_igp, .write_reg = e1000e_write_phy_reg_igp,
}; };
static struct e1000_nvm_operations ich8_nvm_ops = { static const struct e1000_nvm_operations ich8_nvm_ops = {
.acquire = e1000_acquire_nvm_ich8lan, .acquire = e1000_acquire_nvm_ich8lan,
.read = e1000_read_nvm_ich8lan, .read = e1000_read_nvm_ich8lan,
.release = e1000_release_nvm_ich8lan, .release = e1000_release_nvm_ich8lan,
...@@ -4054,7 +4054,7 @@ static struct e1000_nvm_operations ich8_nvm_ops = { ...@@ -4054,7 +4054,7 @@ static struct e1000_nvm_operations ich8_nvm_ops = {
.write = e1000_write_nvm_ich8lan, .write = e1000_write_nvm_ich8lan,
}; };
struct e1000_info e1000_ich8_info = { const struct e1000_info e1000_ich8_info = {
.mac = e1000_ich8lan, .mac = e1000_ich8lan,
.flags = FLAG_HAS_WOL .flags = FLAG_HAS_WOL
| FLAG_IS_ICH | FLAG_IS_ICH
...@@ -4070,7 +4070,7 @@ struct e1000_info e1000_ich8_info = { ...@@ -4070,7 +4070,7 @@ struct e1000_info e1000_ich8_info = {
.nvm_ops = &ich8_nvm_ops, .nvm_ops = &ich8_nvm_ops,
}; };
struct e1000_info e1000_ich9_info = { const struct e1000_info e1000_ich9_info = {
.mac = e1000_ich9lan, .mac = e1000_ich9lan,
.flags = FLAG_HAS_JUMBO_FRAMES .flags = FLAG_HAS_JUMBO_FRAMES
| FLAG_IS_ICH | FLAG_IS_ICH
...@@ -4088,7 +4088,7 @@ struct e1000_info e1000_ich9_info = { ...@@ -4088,7 +4088,7 @@ struct e1000_info e1000_ich9_info = {
.nvm_ops = &ich8_nvm_ops, .nvm_ops = &ich8_nvm_ops,
}; };
struct e1000_info e1000_ich10_info = { const struct e1000_info e1000_ich10_info = {
.mac = e1000_ich10lan, .mac = e1000_ich10lan,
.flags = FLAG_HAS_JUMBO_FRAMES .flags = FLAG_HAS_JUMBO_FRAMES
| FLAG_IS_ICH | FLAG_IS_ICH
...@@ -4106,7 +4106,7 @@ struct e1000_info e1000_ich10_info = { ...@@ -4106,7 +4106,7 @@ struct e1000_info e1000_ich10_info = {
.nvm_ops = &ich8_nvm_ops, .nvm_ops = &ich8_nvm_ops,
}; };
struct e1000_info e1000_pch_info = { const struct e1000_info e1000_pch_info = {
.mac = e1000_pchlan, .mac = e1000_pchlan,
.flags = FLAG_IS_ICH .flags = FLAG_IS_ICH
| FLAG_HAS_WOL | FLAG_HAS_WOL
...@@ -4125,7 +4125,7 @@ struct e1000_info e1000_pch_info = { ...@@ -4125,7 +4125,7 @@ struct e1000_info e1000_pch_info = {
.nvm_ops = &ich8_nvm_ops, .nvm_ops = &ich8_nvm_ops,
}; };
struct e1000_info e1000_pch2_info = { const struct e1000_info e1000_pch2_info = {
.mac = e1000_pch2lan, .mac = e1000_pch2lan,
.flags = FLAG_IS_ICH .flags = FLAG_IS_ICH
| FLAG_HAS_WOL | FLAG_HAS_WOL
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册