@@ -652,11 +652,20 @@ static struct device_attribute SYM53C500_pio_attr = {
.store = SYM53C500_store_pio,
};
-static struct device_attribute *SYM53C500_shost_attrs[] = {
- &SYM53C500_pio_attr,
+static struct attribute *SYM53C500_shost_attrs[] = {
+ &SYM53C500_pio_attr.attr,
NULL,
};
+static const struct attribute_group SYM53C500_shost_attr_group = {
+ .attrs = SYM53C500_shost_attrs
+};
+
+static const struct attribute_group *SYM53C500_shost_groups[] = {
+ &SYM53C500_shost_attr_group,
+ NULL
+};
+
/*
* scsi_host_template initializer
*/
@@ -671,7 +680,7 @@ static struct scsi_host_template sym53c500_driver_template = {
.can_queue = 1,
.this_id = 7,
.sg_tablesize = 32,
- .shost_attrs = SYM53C500_shost_attrs
+ .shost_groups = SYM53C500_shost_groups
};
static int SYM53C500_config_check(struct pcmcia_device *p_dev, void *priv_data)
struct device supports attribute groups directly but does not support struct device_attribute directly. Hence switch to attribute groups. Signed-off-by: Bart Van Assche <bvanassche@acm.org> --- drivers/scsi/pcmcia/sym53c500_cs.c | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-)