All of lore.kernel.org
 help / color / mirror / Atom feed
From: Bo Shen <voice.shen@atmel.com>
To: Alexandre Belloni <alexandre.belloni@piout.net>
Cc: alsa-devel@alsa-project.org, Nicolas Ferre <nicolas.ferre@atmel.com>
Subject: Re: [PATCH] ASoC: atmel_ssc_dai: make module reloadable
Date: Mon, 05 Nov 2012 15:29:52 +0800	[thread overview]
Message-ID: <50976AF0.90500@atmel.com> (raw)
In-Reply-To: <5093D9CB.7000904@atmel.com>

Hi Alexandre Belloni,

On 11/1/2012 14:18, Alexandre Belloni wrote:
> As the platform_devices were never unregistered, it was not possible to
> unload/reload the module.
>
> Signed-off-by: Alexandre Belloni <alexandre.belloni@piout.net>
> ---
>   sound/soc/atmel/atmel_ssc_dai.c |   11 ++++++++++-
>   1 file changed, 10 insertions(+), 1 deletion(-)

NACK - Thanks for your work on atmel ssc dai component. Now, I am 
reworking the atmel ssc dai audio framework. So, some of them will be 
none exist any more.

Thanks again.

Best regards,
Bo Shen

> diff --git a/sound/soc/atmel/atmel_ssc_dai.c b/sound/soc/atmel/atmel_ssc_dai.c
> index 354341e..07ee57b 100644
> --- a/sound/soc/atmel/atmel_ssc_dai.c
> +++ b/sound/soc/atmel/atmel_ssc_dai.c
> @@ -155,6 +155,8 @@ static struct atmel_ssc_info ssc_info[NUM_SSC_DEVICES] = {
>   #endif
>   };
>
> +static struct platform_device *dma_pdev;
> +static struct platform_device *ssc_pdevs[NUM_SSC_DEVICES];
>
>   /*
>    * SSC interrupt handler.  Passes PDC interrupts to the DMA
> @@ -796,6 +798,12 @@ static __devinit int asoc_ssc_probe(struct platform_device *pdev)
>
>   static int __devexit asoc_ssc_remove(struct platform_device *pdev)
>   {
> +	int i;
> +	platform_device_unregister(dma_pdev);
> +
> +	for(i = 0; i < NUM_SSC_DEVICES; i++)
> +		platform_device_unregister(ssc_pdevs[i]);
> +
>   	snd_soc_unregister_dai(&pdev->dev);
>   	return 0;
>   }
> @@ -816,7 +824,6 @@ static struct platform_driver asoc_ssc_driver = {
>   int atmel_ssc_set_audio(int ssc_id)
>   {
>   	struct ssc_device *ssc;
> -	static struct platform_device *dma_pdev;
>   	struct platform_device *ssc_pdev;
>   	int ret;
>
> @@ -855,6 +862,8 @@ int atmel_ssc_set_audio(int ssc_id)
>   	if (ret < 0)
>   		platform_device_put(ssc_pdev);
>
> +	ssc_pdevs[ssc_id] = ssc_pdev;
> +
>   	return ret;
>   }
>   EXPORT_SYMBOL_GPL(atmel_ssc_set_audio);
>

      parent reply	other threads:[~2012-11-05  7:30 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-11-01 13:18 [PATCH] ASoC: atmel_ssc_dai: make module reloadable Alexandre Belloni
     [not found] ` <5093D9CB.7000904@atmel.com>
2012-11-05  7:29   ` Bo Shen [this message]

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=50976AF0.90500@atmel.com \
    --to=voice.shen@atmel.com \
    --cc=alexandre.belloni@piout.net \
    --cc=alsa-devel@alsa-project.org \
    --cc=nicolas.ferre@atmel.com \
    /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 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.