diff options
Diffstat (limited to 'block/blk-integrity.c')
-rw-r--r-- | block/blk-integrity.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/block/blk-integrity.c b/block/blk-integrity.c index d1ab089e0919..85864c71e858 100644 --- a/block/blk-integrity.c +++ b/block/blk-integrity.c | |||
@@ -365,6 +365,7 @@ static struct attribute *integrity_attrs[] = { | |||
365 | &integrity_device_entry.attr, | 365 | &integrity_device_entry.attr, |
366 | NULL, | 366 | NULL, |
367 | }; | 367 | }; |
368 | ATTRIBUTE_GROUPS(integrity); | ||
368 | 369 | ||
369 | static const struct sysfs_ops integrity_ops = { | 370 | static const struct sysfs_ops integrity_ops = { |
370 | .show = &integrity_attr_show, | 371 | .show = &integrity_attr_show, |
@@ -372,7 +373,7 @@ static const struct sysfs_ops integrity_ops = { | |||
372 | }; | 373 | }; |
373 | 374 | ||
374 | static struct kobj_type integrity_ktype = { | 375 | static struct kobj_type integrity_ktype = { |
375 | .default_attrs = integrity_attrs, | 376 | .default_groups = integrity_groups, |
376 | .sysfs_ops = &integrity_ops, | 377 | .sysfs_ops = &integrity_ops, |
377 | }; | 378 | }; |
378 | 379 | ||