[PATCH] tulip: add return to ULI526X clause in tulip_mdio_write

The 'if' clause for ULI526X in tulip_mdio_write allows for
spin_unlock_irqrestore to be called twice for tp->mii_lock. I believe
this is caused by the unintentional omission of a return at the end
of that clause. This patch adds that return.

Signed-off-by: John W. Linville <linville@tuxdriver.com>

authored by John W. Linville and committed by Jeff Garzik 9092f46b 187a1a94

+1
+1
drivers/net/tulip/media.c
··· 174 174 break; 175 175 } 176 176 spin_unlock_irqrestore(&tp->mii_lock, flags); 177 + return; 177 178 } 178 179 179 180 /* Establish sync by sending 32 logic ones. */