From: Matthias Beyer Date: Tue, 29 Jul 2014 12:48:30 +0000 (+0200) Subject: Staging: bcm: IPv6Protocol.c: Removed unnecessary if-else blocks X-Git-Tag: omap-for-v3.17/fixes-against-rc2~166^2~80 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a370ad07b77f91111e29ca0304dcda5895b8f291;p=pandora-kernel.git Staging: bcm: IPv6Protocol.c: Removed unnecessary if-else blocks This patch simplifies if (a) { x = false; } else { if (b) { x = false; } } to if (a || b) { x = false; } Signed-off-by: Matthias Beyer Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed