diff options
author | Jan Beulich <[email protected]> | 2016-07-07 01:38:58 -0600 |
---|---|---|
committer | Konrad Rzeszutek Wilk <[email protected]> | 2016-07-22 08:23:52 -0400 |
commit | 530439484d2d9f2a7f1038b1afd3d3543ecc63f6 (patch) | |
tree | 85922300a8f544ff9367907cec391e6c6c5d4ae9 | |
parent | ff595325ed556fb4b83af5b9ffd5c427c18405d7 (diff) |
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 <[email protected]>
Acked-by: Roger Pau Monné <[email protected]>
Signed-off-by: Jan Beulich <[email protected]>
Signed-off-by: Konrad Rzeszutek Wilk <[email protected]>
-rw-r--r-- | drivers/block/xen-blkback/xenbus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/xen-blkback/xenbus.c b/drivers/block/xen-blkback/xenbus.c index bf09ffe5d460..b44eaf40bb29 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, }; |