aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Fainelli <f.fainelli@gmail.com>2013-12-17 21:38:07 -0800
committerDavid S. Miller <davem@davemloft.net>2013-12-18 00:49:02 -0500
commitdd61d963b90609690c94cfc98227e8aff5a9939c (patch)
treecb589818f960afc89c9526bff220ac68cd9e7732
parentnet: phy: davicom: fix checkpath errors (diff)
downloadlinux-dev-dd61d963b90609690c94cfc98227e8aff5a9939c.tar.xz
linux-dev-dd61d963b90609690c94cfc98227e8aff5a9939c.zip
net: phy: dp83640: fix checkpath error
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/phy/dp83640.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/phy/dp83640.c b/drivers/net/phy/dp83640.c
index 7490b6c866e6..547725fa8671 100644
--- a/drivers/net/phy/dp83640.c
+++ b/drivers/net/phy/dp83640.c
@@ -851,8 +851,8 @@ static int match(struct sk_buff *skb, unsigned int type, struct rxts *rxts)
seqid = (u16 *)(data + offset + OFF_PTP_SEQUENCE_ID);
- return (rxts->msgtype == (*msgtype & 0xf) &&
- rxts->seqid == ntohs(*seqid));
+ return rxts->msgtype == (*msgtype & 0xf) &&
+ rxts->seqid == ntohs(*seqid);
}
static void dp83640_free_clocks(void)