Re: [alsa-devel] [PATCH v3 3/8] mfd: arizona: Add support for WM8998 and WM1814
Something I didn't notice when v2 came along.
On Fri, 2015-05-01 at 16:15 +0100, Richard Fitzgerald wrote:
--- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig
+config MFD_WM8998
- bool "Wolfson Microelectronics WM8998"
- depends on MFD_ARIZONA
- help
Support for Wolfson Microelectronics WM8998 low power audio SoC
config MFD_WM8400 bool "Wolfson Microelectronics WM8400" select MFD_CORE
--- a/drivers/mfd/Makefile +++ b/drivers/mfd/Makefile
ifneq ($(CONFIG_MFD_WM8997),n) obj-$(CONFIG_MFD_ARIZONA) += wm8997-tables.o endif +ifneq ($(CONFIG_MFD_WM8998),n) +obj-$(CONFIG_MFD_ARIZONA) += wm8998-tables.o +endif
Playing a bit with the current version of drivers/mfd/Makefile it seems these ifneq ($(CONFIG_MFD_WM[...]),n)
tests will always be true. Because, as far as I know, the Kconfig macros used in those tests will either be "y" or the empty string, but never "n". (I don't speak Makefilese fluent enough to know how to add simple debugging prints for the values of the CONFIG_MFD_WM[...] macros to actually test this, so correct me if I'm wrong here.)
So I think that, effectively, these wm[...]-tables.o objects will always be built if CONFIG_MFD_ARIZONA is set. Is that the intention? If not, perhaps these test should read ifeq ($(CONFIG_MFD_WM[...]),y)
Thanks,
Paul Bolle
On Sat, May 02, 2015 at 11:58:51AM +0200, Paul Bolle wrote:
Something I didn't notice when v2 came along.
On Fri, 2015-05-01 at 16:15 +0100, Richard Fitzgerald wrote:
--- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig
+config MFD_WM8998
- bool "Wolfson Microelectronics WM8998"
- depends on MFD_ARIZONA
- help
Support for Wolfson Microelectronics WM8998 low power audio SoC
config MFD_WM8400 bool "Wolfson Microelectronics WM8400" select MFD_CORE
--- a/drivers/mfd/Makefile +++ b/drivers/mfd/Makefile
ifneq ($(CONFIG_MFD_WM8997),n) obj-$(CONFIG_MFD_ARIZONA) += wm8997-tables.o endif +ifneq ($(CONFIG_MFD_WM8998),n) +obj-$(CONFIG_MFD_ARIZONA) += wm8998-tables.o +endif
Playing a bit with the current version of drivers/mfd/Makefile it seems these ifneq ($(CONFIG_MFD_WM[...]),n)
tests will always be true. Because, as far as I know, the Kconfig macros used in those tests will either be "y" or the empty string, but never "n". (I don't speak Makefilese fluent enough to know how to add simple debugging prints for the values of the CONFIG_MFD_WM[...] macros to actually test this, so correct me if I'm wrong here.)
Yes, I've noticed that these tests are wrong and I'm working on a patch for it. It's another one of those cases where more lines needs patching to fix it than the 3 lines this WM8998 patch adds, and also fixing it potentially breaks the build because of dependencies that were accidentally working because they never got compiled out. So I'd prefer not to half-fix it in these WM8998 patches it's better to let the code settle and then fix it properly.
So I think that, effectively, these wm[...]-tables.o objects will always be built if CONFIG_MFD_ARIZONA is set. Is that the intention? If not, perhaps these test should read ifeq ($(CONFIG_MFD_WM[...]),y)
Thanks,
Paul Bolle
Richard Fitzgerald schreef op ma 04-05-2015 om 10:11 [+0100]:
Yes, I've noticed that these tests are wrong and I'm working on a patch for it.
Glad to hear I wasn't misreading that Makefile.
It's another one of those cases where more lines needs patching to fix it than the 3 lines this WM8998 patch adds, and also fixing it potentially breaks the build because of dependencies that were accidentally working because they never got compiled out. So I'd prefer not to half-fix it in these WM8998 patches it's better to let the code settle and then fix it properly.
I see. Unless that fix takes very long to land, I won't be bothering you about this again.
Thanks,
Paul Bolle
participants (2)
-
Paul Bolle
-
Richard Fitzgerald