All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ASoC: Intel: mfld: allow mfld machine to be build
@ 2017-11-15 10:52 Vinod Koul
       [not found] ` <2fc42908-631d-364f-c531-c05f077eceb4@linux.intel.com>
  0 siblings, 1 reply; 4+ messages in thread
From: Vinod Koul @ 2017-11-15 10:52 UTC (permalink / raw)
  To: alsa-devel
  Cc: tiwai, Pierre-Louis Bossart, patches.audio, liam.r.girdwood,
	Vinod Koul, broonie

Commit b97169da0699: ("ASoC: Intel: create atom folder and move atom
platform files in") missed adding Kconfig and Makefile support for
MFLD machine driver, so add it while alos fixing the relative patch to
codec header

Fixes: b97169da0699: ("ASoC: Intel: create atom folder and move atom platform files in")
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
---
 sound/soc/intel/boards/Makefile       | 2 ++
 sound/soc/intel/boards/mfld_machine.c | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/sound/soc/intel/boards/Makefile b/sound/soc/intel/boards/Makefile
index a5c5bc5732a2..070cb1afefe1 100644
--- a/sound/soc/intel/boards/Makefile
+++ b/sound/soc/intel/boards/Makefile
@@ -1,3 +1,4 @@
+snd-soc-sst-mfld-objs := mfld_machine.o
 snd-soc-sst-haswell-objs := haswell.o
 snd-soc-sst-byt-rt5640-mach-objs := byt-rt5640.o
 snd-soc-sst-byt-max98090-mach-objs := byt-max98090.o
@@ -19,6 +20,7 @@ snd-soc-skl_rt286-objs := skl_rt286.o
 snd-skl_nau88l25_max98357a-objs := skl_nau88l25_max98357a.o
 snd-soc-skl_nau88l25_ssm4567-objs := skl_nau88l25_ssm4567.o
 
+obj-$(CONFIG_SND_MFLD_MACHINE) += snd-soc-sst-mfld.o
 obj-$(CONFIG_SND_SOC_INTEL_HASWELL_MACH) += snd-soc-sst-haswell.o
 obj-$(CONFIG_SND_SOC_INTEL_BYT_RT5640_MACH) += snd-soc-sst-byt-rt5640-mach.o
 obj-$(CONFIG_SND_SOC_INTEL_BYT_MAX98090_MACH) += snd-soc-sst-byt-max98090-mach.o
diff --git a/sound/soc/intel/boards/mfld_machine.c b/sound/soc/intel/boards/mfld_machine.c
index 6f44acfb4aae..c3d80123610e 100644
--- a/sound/soc/intel/boards/mfld_machine.c
+++ b/sound/soc/intel/boards/mfld_machine.c
@@ -33,7 +33,7 @@
 #include <sound/pcm_params.h>
 #include <sound/soc.h>
 #include <sound/jack.h>
-#include "../codecs/sn95031.h"
+#include "../../codecs/sn95031.h"
 
 #define MID_MONO 1
 #define MID_STEREO 2
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] ASoC: Intel: mfld: allow mfld machine to be build
       [not found] ` <2fc42908-631d-364f-c531-c05f077eceb4@linux.intel.com>
@ 2017-11-15 15:25   ` Vinod Koul
  2017-11-15 16:20     ` Pierre-Louis Bossart
  0 siblings, 1 reply; 4+ messages in thread
From: Vinod Koul @ 2017-11-15 15:25 UTC (permalink / raw)
  To: Pierre-Louis Bossart
  Cc: tiwai, patches.audio, alsa-devel, broonie, liam.r.girdwood

On Wed, Nov 15, 2017 at 08:41:18AM -0600, Pierre-Louis Bossart wrote:
> On 11/15/17 4:52 AM, Vinod Koul wrote:
> >Commit b97169da0699: ("ASoC: Intel: create atom folder and move atom
> >platform files in") missed adding Kconfig and Makefile support for
> >MFLD machine driver, so add it while alos fixing the relative patch to
> >codec header
> 
> Does anyone test this code? I don't think anyone on the Intel side has a
> working platform any longer...

That is good question, we had boards for these but not sure if this is
needed. This was not compiling and noone noticed, so I dont mind removing
these bits.

Any objections..

-- 
~Vinod

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] ASoC: Intel: mfld: allow mfld machine to be build
  2017-11-15 15:25   ` Vinod Koul
@ 2017-11-15 16:20     ` Pierre-Louis Bossart
  2017-11-17 11:42       ` Takashi Iwai
  0 siblings, 1 reply; 4+ messages in thread
From: Pierre-Louis Bossart @ 2017-11-15 16:20 UTC (permalink / raw)
  To: Vinod Koul; +Cc: tiwai, patches.audio, alsa-devel, broonie, liam.r.girdwood

On 11/15/17 9:25 AM, Vinod Koul wrote:
> On Wed, Nov 15, 2017 at 08:41:18AM -0600, Pierre-Louis Bossart wrote:
>> On 11/15/17 4:52 AM, Vinod Koul wrote:
>>> Commit b97169da0699: ("ASoC: Intel: create atom folder and move atom
>>> platform files in") missed adding Kconfig and Makefile support for
>>> MFLD machine driver, so add it while alos fixing the relative patch to
>>> codec header
>>
>> Does anyone test this code? I don't think anyone on the Intel side has a
>> working platform any longer...
> 
> That is good question, we had boards for these but not sure if this is
> needed. This was not compiling and noone noticed, so I dont mind removing
> these bits.
> 
> Any objections..

I saw those configs were not used and I thought it was deprecated on 
purpose...

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] ASoC: Intel: mfld: allow mfld machine to be build
  2017-11-15 16:20     ` Pierre-Louis Bossart
@ 2017-11-17 11:42       ` Takashi Iwai
  0 siblings, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2017-11-17 11:42 UTC (permalink / raw)
  To: Pierre-Louis Bossart
  Cc: Vinod Koul, patches.audio, alsa-devel, broonie, liam.r.girdwood

On Wed, 15 Nov 2017 17:20:51 +0100,
Pierre-Louis Bossart wrote:
> 
> On 11/15/17 9:25 AM, Vinod Koul wrote:
> > On Wed, Nov 15, 2017 at 08:41:18AM -0600, Pierre-Louis Bossart wrote:
> >> On 11/15/17 4:52 AM, Vinod Koul wrote:
> >>> Commit b97169da0699: ("ASoC: Intel: create atom folder and move atom
> >>> platform files in") missed adding Kconfig and Makefile support for
> >>> MFLD machine driver, so add it while alos fixing the relative patch to
> >>> codec header
> >>
> >> Does anyone test this code? I don't think anyone on the Intel side has a
> >> working platform any longer...
> >
> > That is good question, we had boards for these but not sure if this is
> > needed. This was not compiling and noone noticed, so I dont mind removing
> > these bits.
> >
> > Any objections..
> 
> I saw those configs were not used and I thought it was deprecated on
> purpose...

If dropping this would make things easier, I'm for it, too.


Takashi

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-11-17 11:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-15 10:52 [PATCH] ASoC: Intel: mfld: allow mfld machine to be build Vinod Koul
     [not found] ` <2fc42908-631d-364f-c531-c05f077eceb4@linux.intel.com>
2017-11-15 15:25   ` Vinod Koul
2017-11-15 16:20     ` Pierre-Louis Bossart
2017-11-17 11:42       ` Takashi Iwai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.