aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/xen/xen-balloon.c
diff options
context:
space:
mode:
authorJan Beulich <JBeulich@suse.com>2012-03-14 12:34:19 -0400
committerKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>2012-03-14 12:34:19 -0400
commitead1d01425bbd28c4354b539caa4075bde00ed72 (patch)
treea74187ed30691cc95455de39d3c3457ab4ccd37c /drivers/xen/xen-balloon.c
parentxen/xenbus: ignore console/0 (diff)
downloadlinux-dev-ead1d01425bbd28c4354b539caa4075bde00ed72.tar.xz
linux-dev-ead1d01425bbd28c4354b539caa4075bde00ed72.zip
xen: constify all instances of "struct attribute_group"
The functions these get passed to have been taking pointers to const since at least 2.6.16. Signed-off-by: Jan Beulich <jbeulich@suse.com> Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers/xen/xen-balloon.c')
-rw-r--r--drivers/xen/xen-balloon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/xen/xen-balloon.c b/drivers/xen/xen-balloon.c
index 3832e303c33a..3f7922ec13e3 100644
--- a/drivers/xen/xen-balloon.c
+++ b/drivers/xen/xen-balloon.c
@@ -207,7 +207,7 @@ static struct attribute *balloon_info_attrs[] = {
NULL
};
-static struct attribute_group balloon_info_group = {
+static const struct attribute_group balloon_info_group = {
.name = "info",
.attrs = balloon_info_attrs
};