diff options
author | Jens Axboe <jens.axboe@oracle.com> | 2009-09-19 00:24:21 +0400 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2009-10-01 23:15:45 +0400 |
commit | 9f792d9f58496161b1b201e2ca440a6b6e116c39 (patch) | |
tree | 438aea4831218dd618fd38c2af0e0b0e4f1f4300 /drivers/block | |
parent | 9cef0d2f4f68a5a2c6ea0495f958a074d21fbd07 (diff) | |
download | linux-9f792d9f58496161b1b201e2ca440a6b6e116c39.tar.xz |
cciss: cciss_host_attr_groups should be const
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'drivers/block')
-rw-r--r-- | drivers/block/cciss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c index 04036ef8ea5a..4d879b792258 100644 --- a/drivers/block/cciss.c +++ b/drivers/block/cciss.c @@ -656,7 +656,7 @@ static struct attribute_group cciss_host_attr_group = { .attrs = cciss_host_attrs, }; -static struct attribute_group *cciss_host_attr_groups[] = { +static const struct attribute_group *cciss_host_attr_groups[] = { &cciss_host_attr_group, NULL }; |