alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
From: Vinod Koul <vinod.koul@intel.com>
To: Naveen M <naveen.m@intel.com>
Cc: tiwai@suse.de, liam.r.girdwood@linux.intel.com,
	alsa-devel@alsa-project.org, broonie@kernel.org,
	pierre-louis.bossart@intel.com
Subject: Re: [PATCH v2 1/6] ASoC: Intel: Convert all machine data to C99 style
Date: Mon, 15 May 2017 10:50:23 +0530	[thread overview]
Message-ID: <20170515052022.GA15061@localhost> (raw)
In-Reply-To: <1494505944-31378-2-git-send-email-naveen.m@intel.com>

On Thu, May 11, 2017 at 06:02:19PM +0530, Naveen M wrote:
> C99 style struct initialization helps in readability as well as
> initialization of variables not specified as NULL.
> 
> Signed-off-by: Naveen M <naveen.m@intel.com>
> Signed-off-by: Vinod Koul <vinod.koul@intel.com>

this needs:

Suggested-by: Takashi Iwai <tiwai@suse.de>

> ---
>  sound/soc/intel/atom/sst/sst_acpi.c | 209 ++++++++++++++++++++++++++++--------
>  sound/soc/intel/skylake/skl.c       |  60 +++++++++--

Series looks good to me, but I feel we should split these two to separate
patches as they touch two different drivers.

>  2 files changed, 211 insertions(+), 58 deletions(-)
> 
> diff --git a/sound/soc/intel/atom/sst/sst_acpi.c b/sound/soc/intel/atom/sst/sst_acpi.c
> index dd250b8..193c4d7 100644
> --- a/sound/soc/intel/atom/sst/sst_acpi.c
> +++ b/sound/soc/intel/atom/sst/sst_acpi.c
> @@ -453,12 +453,20 @@ static int byt_thinkpad10_quirk_cb(const struct dmi_system_id *id)
>  
>  
>  static struct sst_acpi_mach cht_surface_mach = {
> -	"10EC5640", "cht-bsw-rt5645", "intel/fw_sst_22a8.bin", "cht-bsw", NULL,
> -								&chv_platform_data };
> +	.id = "10EC5640",
> +	.drv_name = "cht-bsw-rt5645",
> +	.fw_filename = "intel/fw_sst_22a8.bin",
> +	.board = "cht-bsw",
> +	.pdata = &chv_platform_data,
> +};
>  
>  static struct sst_acpi_mach byt_thinkpad_10 = {
> -	"10EC5640", "cht-bsw-rt5672", "intel/fw_sst_0f28.bin", "cht-bsw", NULL,
> -	                                                        &byt_rvp_platform_data };
> +	.id = "10EC5640",
> +	.drv_name = "cht-bsw-rt5672",
> +	.fw_filename = "intel/fw_sst_0f28.bin",
> +	.board = "cht-bsw",
> +	.pdata = &byt_rvp_platform_data,
> +};
>  
>  static struct sst_acpi_mach *cht_quirk(void *arg)
>  {
> @@ -486,68 +494,175 @@ static struct sst_acpi_mach *byt_quirk(void *arg)
>  
>  
>  static struct sst_acpi_mach sst_acpi_bytcr[] = {
> -	{"10EC5640", "bytcr_rt5640", "intel/fw_sst_0f28.bin", "bytcr_rt5640", byt_quirk,
> -						&byt_rvp_platform_data },
> -	{"10EC5642", "bytcr_rt5640", "intel/fw_sst_0f28.bin", "bytcr_rt5640", NULL,
> -						&byt_rvp_platform_data },
> -	{"INTCCFFD", "bytcr_rt5640", "intel/fw_sst_0f28.bin", "bytcr_rt5640", NULL,
> -						&byt_rvp_platform_data },
> -	{"10EC5651", "bytcr_rt5651", "intel/fw_sst_0f28.bin", "bytcr_rt5651", NULL,
> -						&byt_rvp_platform_data },
> -	{"DLGS7212", "bytcht_da7213", "intel/fw_sst_0f28.bin", "bytcht_da7213", NULL,
> -						&byt_rvp_platform_data },
> -	{"DLGS7213", "bytcht_da7213", "intel/fw_sst_0f28.bin", "bytcht_da7213", NULL,
> -						&byt_rvp_platform_data },
> +	{
> +		.id = "10EC5640",
> +		.drv_name = "bytcr_rt5640",
> +		.fw_filename = "intel/fw_sst_0f28.bin",
> +		.board = "bytcr_rt5640",
> +		.machine_quirk = byt_quirk,
> +		.pdata = &byt_rvp_platform_data,
> +	},
> +	{
> +		.id = "10EC5642",
> +		.drv_name = "bytcr_rt5640",
> +		.fw_filename = "intel/fw_sst_0f28.bin",
> +		.board = "bytcr_rt5640",
> +		.pdata = &byt_rvp_platform_data
> +	},
> +	{
> +		.id = "INTCCFFD",
> +		.drv_name = "bytcr_rt5640",
> +		.fw_filename = "intel/fw_sst_0f28.bin",
> +		.board = "bytcr_rt5640",
> +		.pdata = &byt_rvp_platform_data
> +	},
> +	{
> +		.id = "10EC5651",
> +		.drv_name = "bytcr_rt5651",
> +		.fw_filename = "intel/fw_sst_0f28.bin",
> +		.board = "bytcr_rt5651",
> +		.pdata = &byt_rvp_platform_data
> +	},
> +	{
> +		.id = "DLGS7212",
> +		.drv_name = "bytcht_da7213",
> +		.fw_filename = "intel/fw_sst_0f28.bin",
> +		.board = "bytcht_da7213",
> +		.pdata = &byt_rvp_platform_data
> +	},
> +	{
> +		.id = "DLGS7213",
> +		.drv_name = "bytcht_da7213",
> +		.fw_filename = "intel/fw_sst_0f28.bin",
> +		.board = "bytcht_da7213",
> +		.pdata = &byt_rvp_platform_data
> +	},
>  	/* some Baytrail platforms rely on RT5645, use CHT machine driver */
> -	{"10EC5645", "cht-bsw-rt5645", "intel/fw_sst_0f28.bin", "cht-bsw", NULL,
> -						&byt_rvp_platform_data },
> -	{"10EC5648", "cht-bsw-rt5645", "intel/fw_sst_0f28.bin", "cht-bsw", NULL,
> -						&byt_rvp_platform_data },
> +	{
> +		.id = "10EC5645",
> +		.drv_name = "cht-bsw-rt5645",
> +		.fw_filename = "intel/fw_sst_0f28.bin",
> +		.board = "cht-bsw",
> +		.pdata = &byt_rvp_platform_data
> +	},
> +	{
> +		.id = "10EC5648",
> +		.drv_name = "cht-bsw-rt5645",
> +		.fw_filename = "intel/fw_sst_0f28.bin",
> +		.board = "cht-bsw",
> +		.pdata = &byt_rvp_platform_data
> +	},
>  #if IS_ENABLED(CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH)
>  	/*
>  	 * This is always last in the table so that it is selected only when
>  	 * enabled explicitly and there is no codec-related information in SSDT
>  	 */
> -	{"80860F28", "bytcht_nocodec", "intel/fw_sst_0f28.bin", "bytcht_nocodec", NULL,
> -						&byt_rvp_platform_data },
> +	{
> +		.id = "80860F28",
> +		.drv_name = "bytcht_nocodec",
> +		.fw_filename = "intel/fw_sst_0f28.bin",
> +		.board = "bytcht_nocodec",
> +		.pdata = &byt_rvp_platform_data
> +	},
>  #endif
>  	{},
>  };
>  
>  /* Cherryview-based platforms: CherryTrail and Braswell */
>  static struct sst_acpi_mach sst_acpi_chv[] = {
> -	{"10EC5670", "cht-bsw-rt5672", "intel/fw_sst_22a8.bin", "cht-bsw", NULL,
> -						&chv_platform_data },
> -	{"10EC5672", "cht-bsw-rt5672", "intel/fw_sst_22a8.bin", "cht-bsw", NULL,
> -						&chv_platform_data },
> -	{"10EC5645", "cht-bsw-rt5645", "intel/fw_sst_22a8.bin", "cht-bsw", NULL,
> -						&chv_platform_data },
> -	{"10EC5650", "cht-bsw-rt5645", "intel/fw_sst_22a8.bin", "cht-bsw", NULL,
> -						&chv_platform_data },
> -	{"10EC3270", "cht-bsw-rt5645", "intel/fw_sst_22a8.bin", "cht-bsw", NULL,
> -						&chv_platform_data },
> -
> -	{"193C9890", "cht-bsw-max98090", "intel/fw_sst_22a8.bin", "cht-bsw", NULL,
> -						&chv_platform_data },
> -	{"DLGS7212", "bytcht_da7213", "intel/fw_sst_22a8.bin", "bytcht_da7213", NULL,
> -						&chv_platform_data },
> -	{"DLGS7213", "bytcht_da7213", "intel/fw_sst_22a8.bin", "bytcht_da7213", NULL,
> -						&chv_platform_data },
> +	{
> +		.id = "10EC5670",
> +		.drv_name = "cht-bsw-rt5672",
> +		.fw_filename = "intel/fw_sst_22a8.bin",
> +		.board = "cht-bsw",
> +		.pdata = &chv_platform_data
> +	},
> +	{
> +		.id = "10EC5672",
> +		.drv_name = "cht-bsw-rt5672",
> +		.fw_filename = "intel/fw_sst_22a8.bin",
> +		.board = "cht-bsw",
> +		.pdata = &chv_platform_data
> +	},
> +	{
> +		.id = "10EC5645",
> +		.drv_name = "cht-bsw-rt5645",
> +		.fw_filename = "intel/fw_sst_22a8.bin",
> +		.board = "cht-bsw",
> +		.pdata = &chv_platform_data
> +	},
> +	{
> +		.id = "10EC5650",
> +		.drv_name = "cht-bsw-rt5645",
> +		.fw_filename = "intel/fw_sst_22a8.bin",
> +		.board = "cht-bsw",
> +		.pdata = &chv_platform_data
> +	},
> +	{
> +		.id = "10EC3270",
> +		.drv_name = "cht-bsw-rt5645",
> +		.fw_filename = "intel/fw_sst_22a8.bin",
> +		.board = "cht-bsw",
> +		.pdata = &chv_platform_data
> +	},
> +
> +	{
> +		.id = "193C9890",
> +		.drv_name = "cht-bsw-max98090",
> +		.fw_filename = "intel/fw_sst_22a8.bin",
> +		.board = "cht-bsw",
> +		.pdata = &chv_platform_data
> +	},
> +	{
> +		.id = "DLGS7212",
> +		.drv_name = "bytcht_da7213",
> +		.fw_filename = "intel/fw_sst_22a8.bin",
> +		.board = "bytcht_da7213",
> +		.pdata = &chv_platform_data
> +	},
> +	{
> +		.id = "DLGS7213",
> +		.drv_name = "bytcht_da7213",
> +		.fw_filename = "intel/fw_sst_22a8.bin",
> +		.board = "bytcht_da7213",
> +		.pdata = &chv_platform_data
> +	},
>  	/* some CHT-T platforms rely on RT5640, use Baytrail machine driver */
> -	{"10EC5640", "bytcr_rt5640", "intel/fw_sst_22a8.bin", "bytcr_rt5640", cht_quirk,
> -						&chv_platform_data },
> -	{"10EC3276", "bytcr_rt5640", "intel/fw_sst_22a8.bin", "bytcr_rt5640", NULL,
> -						&chv_platform_data },
> +	{
> +		.id = "10EC5640",
> +		.drv_name = "bytcr_rt5640",
> +		.fw_filename = "intel/fw_sst_22a8.bin",
> +		.board = "bytcr_rt5640",
> +		.machine_quirk = cht_quirk,
> +		.pdata = &chv_platform_data
> +	},
> +	{
> +		.id = "10EC3276",
> +		.drv_name = "bytcr_rt5640",
> +		.fw_filename = "intel/fw_sst_22a8.bin",
> +		.board = "bytcr_rt5640",
> +		.pdata = &chv_platform_data
> +	},
>  	/* some CHT-T platforms rely on RT5651, use Baytrail machine driver */
> -	{"10EC5651", "bytcr_rt5651", "intel/fw_sst_22a8.bin", "bytcr_rt5651", NULL,
> -						&chv_platform_data },
> +	{
> +		.id = "10EC5651",
> +		.drv_name = "bytcr_rt5651",
> +		.fw_filename = "intel/fw_sst_22a8.bin",
> +		.board = "bytcr_rt5651",
> +		.pdata = &chv_platform_data
> +	},
>  #if IS_ENABLED(CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH)
>  	/*
>  	 * This is always last in the table so that it is selected only when
>  	 * enabled explicitly and there is no codec-related information in SSDT
>  	 */
> -	{"808622A8", "bytcht_nocodec", "intel/fw_sst_22a8.bin", "bytcht_nocodec", NULL,
> -						&chv_platform_data },
> +	{
> +		.id = "808622A8",
> +		.drv_name = "bytcht_nocodec",
> +		.fw_filename = "intel/fw_sst_22a8.bin",
> +		.board = "bytcht_nocodec",
> +		.pdata = &chv_platform_data
> +	},
>  #endif
>  	{},
>  };
> diff --git a/sound/soc/intel/skylake/skl.c b/sound/soc/intel/skylake/skl.c
> index 6df3b31..22a7e39 100644
> --- a/sound/soc/intel/skylake/skl.c
> +++ b/sound/soc/intel/skylake/skl.c
> @@ -863,28 +863,66 @@ static void skl_remove(struct pci_dev *pci)
>  }
>  
>  static struct sst_acpi_mach sst_skl_devdata[] = {
> -	{ "INT343A", "skl_alc286s_i2s", "intel/dsp_fw_release.bin", NULL, NULL, NULL },
> -	{ "INT343B", "skl_n88l25_s4567", "intel/dsp_fw_release.bin",
> -				NULL, NULL, &skl_dmic_data },
> -	{ "MX98357A", "skl_n88l25_m98357a", "intel/dsp_fw_release.bin",
> -				NULL, NULL, &skl_dmic_data },
> +	{
> +		.id = "INT343A",
> +		.drv_name = "skl_alc286s_i2s",
> +		.fw_filename = "intel/dsp_fw_release.bin",
> +	},
> +	{
> +		.id = "INT343B",
> +		.drv_name = "skl_n88l25_s4567",
> +		.fw_filename = "intel/dsp_fw_release.bin",
> +		.pdata = &skl_dmic_data
> +	},
> +	{
> +		.id = "MX98357A",
> +		.drv_name = "skl_n88l25_m98357a",
> +		.fw_filename = "intel/dsp_fw_release.bin",
> +		.pdata = &skl_dmic_data
> +	},
>  	{}
>  };
>  
>  static struct sst_acpi_mach sst_bxtp_devdata[] = {
> -	{ "INT343A", "bxt_alc298s_i2s", "intel/dsp_fw_bxtn.bin", NULL, NULL, NULL },
> -	{ "DLGS7219", "bxt_da7219_max98357a_i2s", "intel/dsp_fw_bxtn.bin", NULL, NULL, NULL },
> +	{
> +		.id = "INT343A",
> +		.drv_name = "bxt_alc298s_i2s",
> +		.fw_filename = "intel/dsp_fw_bxtn.bin",
> +	},
> +	{
> +		.id = "DLGS7219",
> +		.drv_name = "bxt_da7219_max98357a_i2s",
> +		.fw_filename = "intel/dsp_fw_bxtn.bin",
> +	},
>  };
>  
>  static struct sst_acpi_mach sst_kbl_devdata[] = {
> -	{ "INT343A", "kbl_alc286s_i2s", "intel/dsp_fw_kbl.bin", NULL, NULL, NULL },
> -	{ "INT343B", "kbl_n88l25_s4567", "intel/dsp_fw_kbl.bin", NULL, NULL, &skl_dmic_data },
> -	{ "MX98357A", "kbl_n88l25_m98357a", "intel/dsp_fw_kbl.bin", NULL, NULL, &skl_dmic_data },
> +	{
> +		.id = "INT343A",
> +		.drv_name = "kbl_alc286s_i2s",
> +		.fw_filename = "intel/dsp_fw_kbl.bin",
> +	},
> +	{
> +		.id = "INT343B",
> +		.drv_name = "kbl_n88l25_s4567",
> +		.fw_filename = "intel/dsp_fw_kbl.bin",
> +		.pdata = &skl_dmic_data
> +	},
> +	{
> +		.id = "MX98357A",
> +		.drv_name = "kbl_n88l25_m98357a",
> +		.fw_filename = "intel/dsp_fw_kbl.bin",
> +		.pdata = &skl_dmic_data
> +	},
>  	{}
>  };
>  
>  static struct sst_acpi_mach sst_glk_devdata[] = {
> -	{ "INT343A", "glk_alc298s_i2s", "intel/dsp_fw_glk.bin", NULL, NULL, NULL },
> +	{
> +		.id = "INT343A",
> +		.drv_name = "glk_alc298s_i2s",
> +		.fw_filename = "intel/dsp_fw_glk.bin",
> +	},
>  };
>  
>  /* PCI IDs */
> -- 
> 1.9.1
> 

-- 
~Vinod

  reply	other threads:[~2017-05-15  5:18 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-05-11 12:32 [PATCH v2 0/6] ASoC: Intel: kabylake: Adds rt5663+max98927 machine driver Naveen M
2017-05-11 12:32 ` [PATCH v2 1/6] ASoC: Intel: Convert all machine data to C99 style Naveen M
2017-05-15  5:20   ` Vinod Koul [this message]
2017-05-15  5:37     ` Naveen M
2017-05-15  5:37     ` [alsa-devel] " Naveen M
2017-05-11 12:32 ` [PATCH v2 2/6] ASoC: Intel: Create a helper to search for matching machine Naveen M
2017-05-11 12:32 ` [PATCH v2 3/6] ASoC: Move quirk to identify correct machine driver Naveen M
2017-05-11 12:32 ` [PATCH v2 4/6] ASoC: Improve machine driver selection based on quirk data Naveen M
2017-05-24 17:41   ` Applied "ASoC: Improve machine driver selection based on quirk data" to the asoc tree Mark Brown
2017-05-11 12:32 ` [PATCH v2 5/6] ASoC: Intel: Add Kabylake Realtek Maxim machine driver Naveen M
2017-05-11 12:32 ` [PATCH v2 6/6] ASoC: Intel: Add Kabylake RT5663+MAX98927 machine driver entry Naveen M
2017-05-24 17:41   ` Applied "ASoC: Intel: Add Kabylake RT5663+MAX98927 machine driver entry" to the asoc tree Mark Brown

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170515052022.GA15061@localhost \
    --to=vinod.koul@intel.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=liam.r.girdwood@linux.intel.com \
    --cc=naveen.m@intel.com \
    --cc=pierre-louis.bossart@intel.com \
    --cc=tiwai@suse.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).