Re: ath10k: replace config_enabled() with IS_REACHABLE()

2016-09-02 Thread Kalle Valo
hanks, 1 patch applied to ath-next branch of ath.git: 749bc03ae2cd ath10k: replace config_enabled() with IS_REACHABLE() -- Sent by pwcli https://patchwork.kernel.org/patch/9295945/

Re: ath10k: replace config_enabled() with IS_REACHABLE()

2016-09-02 Thread Kalle Valo
enabled() is > equivalent to IS_BUILTIN(), but I guess IS_REACHABLE() is the best > fit for this case because both CONFIG_HWMON and CONFIG_ATH10K are > tristate. > > Signed-off-by: Masahiro Yamada Thanks, 1 patch applied to ath-next branch of ath.git: 749bc03ae2cd ath10k: re

[PATCH] ath10k: replace config_enabled() with IS_REACHABLE()

2016-08-23 Thread Masahiro Yamada
Commit 97f2645f358b ("tree-wide: replace config_enabled() with IS_ENABLED()") mostly did away with config_enabled(). This is one of the postponed TODO items as config_enabled() is used for a tristate option here. Theoretically, config_enabled() is equivalent to IS_BUILTIN(), but I guess

[PATCH] ath10k: replace config_enabled() with IS_REACHABLE()

2016-08-23 Thread Masahiro Yamada
Commit 97f2645f358b ("tree-wide: replace config_enabled() with IS_ENABLED()") mostly did away with config_enabled(). This is one of the postponed TODO items as config_enabled() is used for a tristate option here. Theoretically, config_enabled() is equivalent to IS_BUILTIN(), but I guess