提交 3949c4ac 编写于 作者: J Julia Lawall 提交者: Jeff Kirsher

i40e: constify i40e_client_ops structure

The i40e_client_ops structure is never modified, so declare it as const.

Done with the help of Coccinelle.
Signed-off-by: NJulia Lawall <Julia.Lawall@lip6.fr>
Reviewed-by: NLeon Romanovsky <leonro@mellanox.com>
Tested-by: NAndrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
上级 ce927db4
...@@ -1863,7 +1863,7 @@ static enum i40iw_status_code i40iw_virtchnl_send(struct i40iw_sc_dev *dev, ...@@ -1863,7 +1863,7 @@ static enum i40iw_status_code i40iw_virtchnl_send(struct i40iw_sc_dev *dev,
} }
/* client interface functions */ /* client interface functions */
static struct i40e_client_ops i40e_ops = { static const struct i40e_client_ops i40e_ops = {
.open = i40iw_open, .open = i40iw_open,
.close = i40iw_close, .close = i40iw_close,
.l2_param_change = i40iw_l2param_change, .l2_param_change = i40iw_l2param_change,
......
...@@ -217,7 +217,7 @@ struct i40e_client { ...@@ -217,7 +217,7 @@ struct i40e_client {
#define I40E_CLIENT_FLAGS_LAUNCH_ON_PROBE BIT(0) #define I40E_CLIENT_FLAGS_LAUNCH_ON_PROBE BIT(0)
#define I40E_TX_FLAGS_NOTIFY_OTHER_EVENTS BIT(2) #define I40E_TX_FLAGS_NOTIFY_OTHER_EVENTS BIT(2)
enum i40e_client_type type; enum i40e_client_type type;
struct i40e_client_ops *ops; /* client ops provided by the client */ const struct i40e_client_ops *ops; /* client ops provided by the client */
}; };
static inline bool i40e_client_is_registered(struct i40e_client *client) static inline bool i40e_client_is_registered(struct i40e_client *client)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册