ibm_newemac: emac_tx_csum typo fix
Move the "&& skb->ip_summed == CHECKSUM_PARTIAL" part out of emac_has_feature parameters. Signed-off-by: Valentine Barshak <vbarshak@ru.mvista.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
committed by
Jeff Garzik
parent
5beaf7d6f8
commit
e66f4168d1
@@ -1242,8 +1242,8 @@ static int emac_close(struct net_device *ndev)
|
|||||||
static inline u16 emac_tx_csum(struct emac_instance *dev,
|
static inline u16 emac_tx_csum(struct emac_instance *dev,
|
||||||
struct sk_buff *skb)
|
struct sk_buff *skb)
|
||||||
{
|
{
|
||||||
if (emac_has_feature(dev, EMAC_FTR_HAS_TAH &&
|
if (emac_has_feature(dev, EMAC_FTR_HAS_TAH) &&
|
||||||
skb->ip_summed == CHECKSUM_PARTIAL)) {
|
(skb->ip_summed == CHECKSUM_PARTIAL)) {
|
||||||
++dev->stats.tx_packets_csum;
|
++dev->stats.tx_packets_csum;
|
||||||
return EMAC_TX_CTRL_TAH_CSUM;
|
return EMAC_TX_CTRL_TAH_CSUM;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user