From: Jan Beulich Date: Thu, 7 Jul 2016 07:38:58 +0000 (-0600) Subject: xen-blkback: constify instance of "struct attribute_group" X-Git-Tag: v4.8-rc1~141^2~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=530439484d2d9f2a7f1038b1afd3d3543ecc63f6;p=thirdparty%2Flinux.git xen-blkback: constify instance of "struct attribute_group" The functions these get passed to have been taking pointers to const since at least 2.6.16. Acked-by: Jens Axboe Acked-by: Roger Pau Monné Signed-off-by: Jan Beulich Signed-off-by: Konrad Rzeszutek Wilk --- diff --git a/drivers/block/xen-blkback/xenbus.c b/drivers/block/xen-blkback/xenbus.c index bf09ffe5d460a..b44eaf40bb299 100644 --- a/drivers/block/xen-blkback/xenbus.c +++ b/drivers/block/xen-blkback/xenbus.c @@ -379,7 +379,7 @@ static struct attribute *xen_vbdstat_attrs[] = { NULL }; -static struct attribute_group xen_vbdstat_group = { +static const struct attribute_group xen_vbdstat_group = { .name = "statistics", .attrs = xen_vbdstat_attrs, };