diff options
author | Jan Beulich <JBeulich@suse.com> | 2012-03-14 12:34:19 -0400 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2012-03-14 12:34:19 -0400 |
commit | ead1d01425bbd28c4354b539caa4075bde00ed72 (patch) | |
tree | a74187ed30691cc95455de39d3c3457ab4ccd37c /drivers/xen/xen-balloon.c | |
parent | 42c46e6ba5461fcab289bf4a1b7160f94c10aa28 (diff) |
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.c | 2 |
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[] = { | |||
207 | NULL | 207 | NULL |
208 | }; | 208 | }; |
209 | 209 | ||
210 | static struct attribute_group balloon_info_group = { | 210 | static const struct attribute_group balloon_info_group = { |
211 | .name = "info", | 211 | .name = "info", |
212 | .attrs = balloon_info_attrs | 212 | .attrs = balloon_info_attrs |
213 | }; | 213 | }; |