]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
drivers: hv: fix up const issue with vmbus_chan_bin_attrs
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 21 May 2025 09:29:34 +0000 (11:29 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 21 May 2025 09:31:39 +0000 (11:31 +0200)
In commit 9bec944506fa ("sysfs: constify attribute_group::bin_attrs"),
the bin_attributes are now required to be const.  Due to merge issues,
the original commit could not modify this structure (it came in through
a different branch.)  Fix this up now by setting the variable properly.

Cc: Thomas Weißschuh <linux@weissschuh.net>
Cc: Naman Jain <namjain@linux.microsoft.com>
Fixes: 9bec944506fa ("sysfs: constify attribute_group::bin_attrs")
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/hv/vmbus_drv.c

index e3d51a3163163c84f5198cdef48fa34dbb648eae..d74adb5bba444f088118b2dff87efbfa1dfce4df 100644 (file)
@@ -1841,7 +1841,7 @@ static struct attribute *vmbus_chan_attrs[] = {
        NULL
 };
 
-static struct bin_attribute *vmbus_chan_bin_attrs[] = {
+static const struct bin_attribute *vmbus_chan_bin_attrs[] = {
        &chan_attr_ring_buffer,
        NULL
 };