commit | 1d20a16062e771b6e26b843c0cde3b17c1146e00 | [log] [tgz] |
---|---|---|
author | David S. Miller <davem@davemloft.net> | Fri Apr 17 15:15:40 2015 -0400 |
committer | David S. Miller <davem@davemloft.net> | Fri Apr 17 15:15:40 2015 -0400 |
tree | 5c86fcb00ba298eac8553209856c160e5fabd673 | |
parent | 93ea337852d6c9f292e2ccfc394be0f2859b99ae [diff] |
sfc: Fix memcpy() with const destination compiler warning. drivers/net/ethernet/sfc/selftest.c: In function ‘efx_iterate_state’: drivers/net/ethernet/sfc/selftest.c:388:9: warning: passing argument 1 of ‘memcpy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-array-qualifiers] This is because the msg[] member of struct efx_loopback_payload is marked as 'const'. Remove that. Signed-off-by: David S. Miller <davem@davemloft.net>