Commit ef9c7ab4 authored by stephen hemminger's avatar stephen hemminger Committed by David S. Miller

qlge: make nic_operations struct const

The struct nic_operations is just function pointers and should be
declared const for added security.
Signed-off-by: default avatarStephen Hemminger <shemminger@vyatta.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 6c8c2513
......@@ -2134,7 +2134,7 @@ struct ql_adapter {
struct delayed_work mpi_idc_work;
struct delayed_work mpi_core_to_log;
struct completion ide_completion;
struct nic_operations *nic_ops;
const struct nic_operations *nic_ops;
u16 device_id;
struct timer_list timer;
atomic_t lb_count;
......
......@@ -4412,12 +4412,12 @@ static void ql_asic_reset_work(struct work_struct *work)
rtnl_unlock();
}
static struct nic_operations qla8012_nic_ops = {
static const struct nic_operations qla8012_nic_ops = {
.get_flash = ql_get_8012_flash_params,
.port_initialize = ql_8012_port_initialize,
};
static struct nic_operations qla8000_nic_ops = {
static const struct nic_operations qla8000_nic_ops = {
.get_flash = ql_get_8000_flash_params,
.port_initialize = ql_8000_port_initialize,
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment