]> git.baikalelectronics.ru Git - kernel.git/commit
net: bcmgenet: Fix sparse warnings in bcmgenet_put_tx_csum()
authorFlorian Fainelli <f.fainelli@gmail.com>
Mon, 2 Apr 2018 22:58:55 +0000 (15:58 -0700)
committerDavid S. Miller <davem@davemloft.net>
Wed, 4 Apr 2018 15:07:21 +0000 (11:07 -0400)
commit1136270f3eb8d66a1a34e6fc78e10a7ae701b0b4
tree418ca577e2df43873a6264cd5bf15f6a9e7572b6
parentf0b2352de9b93099353fd929cc3c4c1e8185ccdc
net: bcmgenet: Fix sparse warnings in bcmgenet_put_tx_csum()

skb->protocol is a __be16 which we would be calling htons() against,
while this is not wrong per-se as it correctly results in swapping the
value on LE hosts, this still upsets sparse. Adopt a similar pattern to
what other drivers do and just assign ip_ver to skb->protocol, and then
use htons() against the different constants such that the compiler can
resolve the values at build time.

Fixes: 390dff99da87 ("net: bcmgenet: add main driver file")
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/broadcom/genet/bcmgenet.c