diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2009-11-17 09:47:02 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-11-17 09:47:02 -0500 |
commit | 302689ac47b563f9d4d8318f399bae225658eec8 (patch) | |
tree | 90d799d0d30da55bfc39c082e1a0a6fdd623ea66 /drivers/s390/net/ctcm_main.c | |
parent | b76965e02bfdd4164c00bf946ff6ca1818ed9fcd (diff) |
net/s390 drivers: add missing 'const' attribute
Add missing 'const' attribute to avoid the following compile warnings:
drivers/s390/net/ctcm_main.c: In function 'ctcm_init':
drivers/s390/net/ctcm_main.c:1864: warning: assignment from incompatible pointer type
drivers/s390/net/lcs.c: In function 'lcs_init_module':
drivers/s390/net/lcs.c:2468: warning: assignment from incompatible pointer type
drivers/s390/net/claw.c: In function 'claw_init':
drivers/s390/net/claw.c:3408: warning: assignment from incompatible pointer type
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/s390/net/ctcm_main.c')
-rw-r--r-- | drivers/s390/net/ctcm_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/s390/net/ctcm_main.c b/drivers/s390/net/ctcm_main.c index 558dc323a947..e35713dd0504 100644 --- a/drivers/s390/net/ctcm_main.c +++ b/drivers/s390/net/ctcm_main.c | |||
@@ -1806,7 +1806,7 @@ static struct attribute_group ctcm_group_attr_group = { | |||
1806 | .attrs = ctcm_group_attrs, | 1806 | .attrs = ctcm_group_attrs, |
1807 | }; | 1807 | }; |
1808 | 1808 | ||
1809 | static struct attribute_group *ctcm_group_attr_groups[] = { | 1809 | static const struct attribute_group *ctcm_group_attr_groups[] = { |
1810 | &ctcm_group_attr_group, | 1810 | &ctcm_group_attr_group, |
1811 | NULL, | 1811 | NULL, |
1812 | }; | 1812 | }; |