diff options
author | Joe Perches <joe@perches.com> | 2008-11-19 18:45:15 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-19 18:45:15 -0500 |
commit | d171235e712c11c0a0f47f62619024bf726125e1 (patch) | |
tree | 0c06db37f3edc2982815a5ff5b7ca5511534c582 /drivers/s390 | |
parent | 07f0757a6808f2f36a0e58c3a54867ccffdb8dc9 (diff) |
drivers/s390/ - csum_partial - remove unnecessary casts
The first argument to csum_partial is const void *
casts to char/u8 * are not necessary
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/s390')
-rw-r--r-- | drivers/s390/net/qeth_core_offl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/s390/net/qeth_core_offl.c b/drivers/s390/net/qeth_core_offl.c index 452874e89740..4080126ca48c 100644 --- a/drivers/s390/net/qeth_core_offl.c +++ b/drivers/s390/net/qeth_core_offl.c | |||
@@ -350,7 +350,7 @@ static __wsum qeth_eddp_check_tcp4_hdr(struct qeth_eddp_data *eddp, | |||
350 | phcsum = csum_tcpudp_nofold(eddp->nh.ip4.h.saddr, eddp->nh.ip4.h.daddr, | 350 | phcsum = csum_tcpudp_nofold(eddp->nh.ip4.h.saddr, eddp->nh.ip4.h.daddr, |
351 | eddp->thl + data_len, IPPROTO_TCP, 0); | 351 | eddp->thl + data_len, IPPROTO_TCP, 0); |
352 | /* compute checksum of tcp header */ | 352 | /* compute checksum of tcp header */ |
353 | return csum_partial((u8 *)&eddp->th, eddp->thl, phcsum); | 353 | return csum_partial(&eddp->th, eddp->thl, phcsum); |
354 | } | 354 | } |
355 | 355 | ||
356 | static __wsum qeth_eddp_check_tcp6_hdr(struct qeth_eddp_data *eddp, | 356 | static __wsum qeth_eddp_check_tcp6_hdr(struct qeth_eddp_data *eddp, |
@@ -362,12 +362,12 @@ static __wsum qeth_eddp_check_tcp6_hdr(struct qeth_eddp_data *eddp, | |||
362 | QETH_DBF_TEXT(TRACE, 5, "eddpckt6"); | 362 | QETH_DBF_TEXT(TRACE, 5, "eddpckt6"); |
363 | eddp->th.tcp.h.check = 0; | 363 | eddp->th.tcp.h.check = 0; |
364 | /* compute pseudo header checksum */ | 364 | /* compute pseudo header checksum */ |
365 | phcsum = csum_partial((u8 *)&eddp->nh.ip6.h.saddr, | 365 | phcsum = csum_partial(&eddp->nh.ip6.h.saddr, |
366 | sizeof(struct in6_addr), 0); | 366 | sizeof(struct in6_addr), 0); |
367 | phcsum = csum_partial((u8 *)&eddp->nh.ip6.h.daddr, | 367 | phcsum = csum_partial(&eddp->nh.ip6.h.daddr, |
368 | sizeof(struct in6_addr), phcsum); | 368 | sizeof(struct in6_addr), phcsum); |
369 | proto = htonl(IPPROTO_TCP); | 369 | proto = htonl(IPPROTO_TCP); |
370 | phcsum = csum_partial((u8 *)&proto, sizeof(u32), phcsum); | 370 | phcsum = csum_partial(&proto, sizeof(u32), phcsum); |
371 | return phcsum; | 371 | return phcsum; |
372 | } | 372 | } |
373 | 373 | ||