Merge remote-tracking branches 'asoc/topic/fsl-spdif', 'asoc/topic/imx', 'asoc/topic/intel', 'asoc/topic/mxs-saif' and 'asoc/topic/nuc900' into asoc-next
Šī revīzija ir iekļauta:
@@ -90,7 +90,6 @@ struct spdif_mixer_control {
|
||||
* @sysclk: system clock for rx clock rate measurement
|
||||
* @dma_params_tx: DMA parameters for transmit channel
|
||||
* @dma_params_rx: DMA parameters for receive channel
|
||||
* @name: driver name
|
||||
*/
|
||||
struct fsl_spdif_priv {
|
||||
struct spdif_mixer_control fsl_spdif_control;
|
||||
@@ -109,12 +108,8 @@ struct fsl_spdif_priv {
|
||||
struct clk *sysclk;
|
||||
struct snd_dmaengine_dai_dma_data dma_params_tx;
|
||||
struct snd_dmaengine_dai_dma_data dma_params_rx;
|
||||
|
||||
/* The name space will be allocated dynamically */
|
||||
char name[0];
|
||||
};
|
||||
|
||||
|
||||
/* DPLL locked and lock loss interrupt handler */
|
||||
static void spdif_irq_dpll_lock(struct fsl_spdif_priv *spdif_priv)
|
||||
{
|
||||
@@ -1169,19 +1164,15 @@ static int fsl_spdif_probe(struct platform_device *pdev)
|
||||
if (!np)
|
||||
return -ENODEV;
|
||||
|
||||
spdif_priv = devm_kzalloc(&pdev->dev,
|
||||
sizeof(struct fsl_spdif_priv) + strlen(np->name) + 1,
|
||||
GFP_KERNEL);
|
||||
spdif_priv = devm_kzalloc(&pdev->dev, sizeof(*spdif_priv), GFP_KERNEL);
|
||||
if (!spdif_priv)
|
||||
return -ENOMEM;
|
||||
|
||||
strcpy(spdif_priv->name, np->name);
|
||||
|
||||
spdif_priv->pdev = pdev;
|
||||
|
||||
/* Initialize this copy of the CPU DAI driver structure */
|
||||
memcpy(&spdif_priv->cpu_dai_drv, &fsl_spdif_dai, sizeof(fsl_spdif_dai));
|
||||
spdif_priv->cpu_dai_drv.name = spdif_priv->name;
|
||||
spdif_priv->cpu_dai_drv.name = dev_name(&pdev->dev);
|
||||
|
||||
/* Get the addresses and IRQ */
|
||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||
@@ -1203,7 +1194,7 @@ static int fsl_spdif_probe(struct platform_device *pdev)
|
||||
}
|
||||
|
||||
ret = devm_request_irq(&pdev->dev, irq, spdif_isr, 0,
|
||||
spdif_priv->name, spdif_priv);
|
||||
dev_name(&pdev->dev), spdif_priv);
|
||||
if (ret) {
|
||||
dev_err(&pdev->dev, "could not claim irq %u\n", irq);
|
||||
return ret;
|
||||
|
@@ -160,7 +160,7 @@ struct fsl_ssi_soc_data {
|
||||
*/
|
||||
struct fsl_ssi_private {
|
||||
struct regmap *regs;
|
||||
unsigned int irq;
|
||||
int irq;
|
||||
struct snd_soc_dai_driver cpu_dai_drv;
|
||||
|
||||
unsigned int dai_fmt;
|
||||
|
@@ -60,6 +60,7 @@ static int imx_spdif_audio_probe(struct platform_device *pdev)
|
||||
data->card.dev = &pdev->dev;
|
||||
data->card.dai_link = &data->dai;
|
||||
data->card.num_links = 1;
|
||||
data->card.owner = THIS_MODULE;
|
||||
|
||||
ret = snd_soc_of_parse_card_name(&data->card, "model");
|
||||
if (ret)
|
||||
|
Atsaukties uz šo jaunā problēmā
Block a user