commit | 315917d23fdd20a0f4ff99b9228de5840d9d276c | [log] [tgz] |
---|---|---|
author | Francois Romieu <romieu@fr.zoreil.com> | Wed Nov 29 22:21:33 2006 +0100 |
committer | Linus Torvalds <torvalds@woody.osdl.org> | Wed Nov 29 13:45:07 2006 -0800 |
tree | d1ddfc02bcfe5c7f57ed604c7d928d6e1bd74d11 | |
parent | af768c6711de615abf9c679732a2f8245a4c286c [diff] |
[PATCH] r8169: Fix iteration variable sign This changes the type of variable "i" in rtl8169_init_one() from "unsigned int" to "int". "i" is checked for < 0 later, which can never happen for "unsigned". This results in broken error handling. Signed-off-by: Michael Buesch <mb@bu3sch.de> Signed-off-by: Francois Romieu <romieu@fr.zoreil.com> Signed-off-by: Linus Torvalds <torvalds@osdl.org>