From: Andreas Ruprecht Date: Mon, 15 Jun 2015 13:03:00 +0000 (+0200) Subject: staging: rtl8723au: core: Remove unneeded #ifdefs X-Git-Tag: omap-for-v4.3/legacy-v2-signed~121^2~95 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07a55cd9b27a3a3f349617bd5037426ff2995f1c;p=pandora-kernel.git staging: rtl8723au: core: Remove unneeded #ifdefs In rtw_mlme_ext.c, nested #ifdef blocks form the following structure inside the file: #ifdef CONFIG_8723AU_AP_MODE (line 1323) [...] #ifdef CONFIG_8723AU_AP_MODE (line 1720) [...] #endif (2 more ifdef blocks with CONFIG_8723AU_AP_MODE follow) [...] #endif /* CONFIG_8723AU_AP_MODE */ (line 1763) The inner #ifdefs are unnecessary as they depend on the same condition as the outer #ifdef and can thus be removed. Signed-off-by: Andreas Ruprecht Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed