Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dmaengine: ioatdma: use default_groups in kobj_type

There are currently 2 ways to create a set of sysfs files for a
kobj_type, through the default_attrs field, and the default_groups
field. Move the ioatdma sysfs code to use default_groups field which has
been the preferred way since aa30f47cf666 ("kobject: Add support for
default attribute groups to kobj_type") so that we can soon get rid of
the obsolete default_attrs field.

Cc: Vinod Koul <vkoul@kernel.org>
Cc: dmaengine@vger.kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Acked-by: Dave Jiang <dave.jiang@intel.com>
Link: https://lore.kernel.org/r/20220104163330.1338824-1-gregkh@linuxfoundation.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>

authored by

Greg Kroah-Hartman and committed by
Vinod Koul
26e9baa8 5cb664fb

+2 -1
+2 -1
drivers/dma/ioat/sysfs.c
··· 158 158 &intr_coalesce_attr.attr, 159 159 NULL, 160 160 }; 161 + ATTRIBUTE_GROUPS(ioat); 161 162 162 163 struct kobj_type ioat_ktype = { 163 164 .sysfs_ops = &ioat_sysfs_ops, 164 - .default_attrs = ioat_attrs, 165 + .default_groups = ioat_groups, 165 166 };