Message ID | 20200319194957.9569-3-daniel.baluta@oss.nxp.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Add support for SOF on i.MX8M | expand |
On Thu, Mar 19, 2020 at 09:49:54PM +0200, Daniel Baluta wrote: > From: Daniel Baluta <daniel.baluta@nxp.com> > Fixes: f9ad75468453 ("ASoC: SOF: imx: fix reverse CONFIG_SND_SOC_SOF_OF > dependency") > Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> > Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com> This has you as the author but you list a signoff by Pierre before you?
On Tue, Mar 31, 2020 at 3:25 PM Mark Brown <broonie@kernel.org> wrote: > > On Thu, Mar 19, 2020 at 09:49:54PM +0200, Daniel Baluta wrote: > > From: Daniel Baluta <daniel.baluta@nxp.com> > > > Fixes: f9ad75468453 ("ASoC: SOF: imx: fix reverse CONFIG_SND_SOC_SOF_OF > > dependency") > > Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> > > Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com> > > This has you as the author but you list a signoff by Pierre before you? Patch was initially designed by Pierre [1] when in the internal SOF tree we already had the I.MX8M patches. Whereas, in the current patch series I firstly fix the i.MX8 then I add support for i.MX8M. Should I go back and put Pierre as original author? [1] https://github.com/thesofproject/linux/commit/0c7dcfee80d96a8e75684178ab738c1e6175c386
On Tue, Mar 31, 2020 at 03:41:57PM +0300, Daniel Baluta wrote: > On Tue, Mar 31, 2020 at 3:25 PM Mark Brown <broonie@kernel.org> wrote: > > This has you as the author but you list a signoff by Pierre before you? > Patch was initially designed by Pierre [1] when in the internal SOF > tree we already had the I.MX8M patches. > Whereas, in the current patch series I firstly fix the i.MX8 then I > add support for i.MX8M. > Should I go back and put Pierre as original author? Yes, if you're forwarding a patch someone else wrote you should keep their authorship.
diff --git a/sound/soc/sof/imx/Kconfig b/sound/soc/sof/imx/Kconfig index 812749064ca8..9586635cf8ab 100644 --- a/sound/soc/sof/imx/Kconfig +++ b/sound/soc/sof/imx/Kconfig @@ -11,17 +11,26 @@ config SND_SOC_SOF_IMX_TOPLEVEL if SND_SOC_SOF_IMX_TOPLEVEL +config SND_SOC_SOF_IMX_OF + def_tristate SND_SOC_SOF_OF + select SND_SOC_SOF_IMX8 if SND_SOC_SOF_IMX8_SUPPORT + help + This option is not user-selectable but automagically handled by + 'select' statements at a higher level + config SND_SOC_SOF_IMX8_SUPPORT bool "SOF support for i.MX8" - depends on IMX_SCU - select IMX_DSP help This adds support for Sound Open Firmware for NXP i.MX8 platforms Say Y if you have such a device. If unsure select "N". config SND_SOC_SOF_IMX8 - def_tristate SND_SOC_SOF_OF - depends on SND_SOC_SOF_IMX8_SUPPORT + tristate + depends on IMX_SCU + select IMX_DSP + help + This option is not user-selectable but automagically handled by + 'select' statements at a higher level endif ## SND_SOC_SOF_IMX_IMX_TOPLEVEL