Casting a character pointer to uint16_t * or uint32_t * provokes this
warning on sparc. There is no actual problem, because all of the accesses
to data occurs through calls to the get_unaligned_*() functions, so this
commit suppresses the warning by using "void *" as an intermediate type.
int i;
for (tc = test_cases; tc < &test_cases[ARRAY_SIZE(test_cases)]; tc++) {
- const ovs_be16 *data16 = (OVS_FORCE const ovs_be16 *) tc->data;
- const ovs_be32 *data32 = (OVS_FORCE const ovs_be32 *) tc->data;
+ const void *data = tc->data;
+ const ovs_be16 *data16 = (OVS_FORCE const ovs_be16 *) data;
+ const ovs_be32 *data32 = (OVS_FORCE const ovs_be32 *) data;
uint32_t partial;
/* Test csum(). */