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/lcs.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/lcs.c')
-rw-r--r-- | drivers/s390/net/lcs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/s390/net/lcs.c b/drivers/s390/net/lcs.c index 1d43d23f5ea3..f6cc46dc0501 100644 --- a/drivers/s390/net/lcs.c +++ b/drivers/s390/net/lcs.c | |||
@@ -2440,7 +2440,7 @@ static struct attribute_group lcs_group_attr_group = { | |||
2440 | .attrs = lcs_group_attrs, | 2440 | .attrs = lcs_group_attrs, |
2441 | }; | 2441 | }; |
2442 | 2442 | ||
2443 | static struct attribute_group *lcs_group_attr_groups[] = { | 2443 | static const struct attribute_group *lcs_group_attr_groups[] = { |
2444 | &lcs_group_attr_group, | 2444 | &lcs_group_attr_group, |
2445 | NULL, | 2445 | NULL, |
2446 | }; | 2446 | }; |