Commit 09723bb2 authored by Bart Van Assche's avatar Bart Van Assche Committed by Martin K. Petersen

scsi: megaraid_sas: Switch to attribute groups

struct device supports attribute groups directly but does not support
struct device_attribute directly. Hence switch to attribute groups.

Link: https://lore.kernel.org/r/20211012233558.4066756-29-bvanassche@acm.orgSigned-off-by: default avatarBart Van Assche <bvanassche@acm.org>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent ab53de24
...@@ -3481,19 +3481,21 @@ static DEVICE_ATTR_RW(enable_sdev_max_qd); ...@@ -3481,19 +3481,21 @@ static DEVICE_ATTR_RW(enable_sdev_max_qd);
static DEVICE_ATTR_RO(dump_system_regs); static DEVICE_ATTR_RO(dump_system_regs);
static DEVICE_ATTR_RO(raid_map_id); static DEVICE_ATTR_RO(raid_map_id);
static struct device_attribute *megaraid_host_attrs[] = { static struct attribute *megaraid_host_attrs[] = {
&dev_attr_fw_crash_buffer_size, &dev_attr_fw_crash_buffer_size.attr,
&dev_attr_fw_crash_buffer, &dev_attr_fw_crash_buffer.attr,
&dev_attr_fw_crash_state, &dev_attr_fw_crash_state.attr,
&dev_attr_page_size, &dev_attr_page_size.attr,
&dev_attr_ldio_outstanding, &dev_attr_ldio_outstanding.attr,
&dev_attr_fw_cmds_outstanding, &dev_attr_fw_cmds_outstanding.attr,
&dev_attr_enable_sdev_max_qd, &dev_attr_enable_sdev_max_qd.attr,
&dev_attr_dump_system_regs, &dev_attr_dump_system_regs.attr,
&dev_attr_raid_map_id, &dev_attr_raid_map_id.attr,
NULL, NULL,
}; };
ATTRIBUTE_GROUPS(megaraid_host);
/* /*
* Scsi host template for megaraid_sas driver * Scsi host template for megaraid_sas driver
*/ */
...@@ -3510,7 +3512,7 @@ static struct scsi_host_template megasas_template = { ...@@ -3510,7 +3512,7 @@ static struct scsi_host_template megasas_template = {
.eh_abort_handler = megasas_task_abort, .eh_abort_handler = megasas_task_abort,
.eh_host_reset_handler = megasas_reset_bus_host, .eh_host_reset_handler = megasas_reset_bus_host,
.eh_timed_out = megasas_reset_timer, .eh_timed_out = megasas_reset_timer,
.shost_attrs = megaraid_host_attrs, .shost_groups = megaraid_host_groups,
.bios_param = megasas_bios_param, .bios_param = megasas_bios_param,
.map_queues = megasas_map_queues, .map_queues = megasas_map_queues,
.mq_poll = megasas_blk_mq_poll, .mq_poll = megasas_blk_mq_poll,
......
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