staging: rtl8723au: core: Remove unneeded #ifdefs
authorAndreas Ruprecht <andreas.ruprecht@fau.de>
Mon, 15 Jun 2015 13:03:00 +0000 (15:03 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 18 Jun 2015 04:25:23 +0000 (21:25 -0700)
commit07a55cd9b27a3a3f349617bd5037426ff2995f1c
tree341fef603e2e284aebecc71b5f466305d5b443a1
parenta9b693cd77d70fb93dad8cbce667a49cd9b87352
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 <andreas.ruprecht@fau.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723au/core/rtw_mlme_ext.c
This page took 0.025668 seconds and 5 git commands to generate.