From: Akinobu Mita Date: Mon, 29 Apr 2013 23:21:41 +0000 (-0700) Subject: net/core: remove duplicate statements by do-while loop X-Git-Tag: omap-for-v3.10/dt-fixes-for-merge-window~123^2~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=70e3ba72ba9afd4ec28ab09f6a27aac00c30b358;p=pandora-kernel.git net/core: remove duplicate statements by do-while loop Remove duplicate statements by using do-while loop instead of while loop. - A; - while (e) { + do { A; - } + } while (e); Signed-off-by: Akinobu Mita Cc: "David S. Miller" Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- Reading git-diff-tree failed