Skip to content

Commit

Permalink
[PATCH] sk98lin debug build fix
Browse files Browse the repository at this point in the history
Fix parenthesis mismatch.

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
  • Loading branch information
Mariusz Kozlowski authored and Jeff Garzik committed Dec 4, 2006
1 parent e8f7f7f commit 043d580
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/sk98lin/skgesirq.c
Original file line number Diff line number Diff line change
Expand Up @@ -1319,7 +1319,7 @@ SK_BOOL AutoNeg) /* Is Auto-negotiation used ? */
SkXmPhyRead(pAC, IoC, Port, PHY_BCOM_INT_STAT, &Isrc);

#ifdef xDEBUG
if ((Isrc & ~(PHY_B_IS_HCT | PHY_B_IS_LCT) ==
if ((Isrc & ~(PHY_B_IS_HCT | PHY_B_IS_LCT)) ==
(PHY_B_IS_SCR_S_ER | PHY_B_IS_RRS_CHANGE | PHY_B_IS_LRS_CHANGE)) {

SK_U32 Stat1, Stat2, Stat3;
Expand Down

0 comments on commit 043d580

Please sign in to comment.