diff options
author | Eric Dumazet <dada1@cosmosbay.com> | 2008-04-25 02:33:06 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-04-25 02:33:06 -0400 |
commit | 78c6146f16d45f52c33ddb6b48c10fc6cfc53659 (patch) | |
tree | 64f756bf9939b30487d08daed7ac4eee9e1ee36b /drivers/net/tg3.c | |
parent | 1a98d05f59704d60be85b03f727964e15c77224c (diff) |
tg3: sparse cleanup
Fix the following sparse warning :
drivers/net/tg3.c:4025:3: warning: context imbalance in 'tg3_restart_hw'
- unexpected unlock
Signed-off-by: Eric Dumazet <dada1@cosmosbay.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/tg3.c')
-rw-r--r-- | drivers/net/tg3.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c index bc4c62b8e81a..e3f74c9f78bd 100644 --- a/drivers/net/tg3.c +++ b/drivers/net/tg3.c | |||
@@ -4017,6 +4017,8 @@ static int tg3_halt(struct tg3 *, int, int); | |||
4017 | * Invoked with tp->lock held. | 4017 | * Invoked with tp->lock held. |
4018 | */ | 4018 | */ |
4019 | static int tg3_restart_hw(struct tg3 *tp, int reset_phy) | 4019 | static int tg3_restart_hw(struct tg3 *tp, int reset_phy) |
4020 | __releases(tp->lock) | ||
4021 | __acquires(tp->lock) | ||
4020 | { | 4022 | { |
4021 | int err; | 4023 | int err; |
4022 | 4024 | ||