* [PATCH] ASoC: atmel-soc: make it buildable on other architectures
@ 2012-12-08 13:23 Joachim Eastwood
2012-12-10 9:54 ` Bo Shen
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Joachim Eastwood @ 2012-12-08 13:23 UTC (permalink / raw)
To: voice.shen, plagnioj, nicolas.ferre, broonie
Cc: linux-arm-kernel, alsa-devel, linux-sound, Joachim Eastwood
Not very useful on non AT91/AVR32 platforms but it provides
more build coverage and prepares for ARM multiplatform.
Also fixes a couple of format type warnings.
Signed-off-by: Joachim Eastwood <manabian@gmail.com>
---
Hi,
Build tested on RM9200 and x86_64.
ARCH_AT91 depend is pushed down to the machine drivers
since they still relies on mach includes.
regards
Joachim Eastwood
sound/soc/atmel/Kconfig | 6 +++---
sound/soc/atmel/atmel-pcm-pdc.c | 4 ++--
sound/soc/atmel/atmel-pcm.c | 2 +-
sound/soc/atmel/atmel_ssc_dai.c | 2 --
4 files changed, 6 insertions(+), 8 deletions(-)
diff --git a/sound/soc/atmel/Kconfig b/sound/soc/atmel/Kconfig
index d1b691b..3fdd87f 100644
--- a/sound/soc/atmel/Kconfig
+++ b/sound/soc/atmel/Kconfig
@@ -1,6 +1,6 @@
config SND_ATMEL_SOC
tristate "SoC Audio for the Atmel System-on-Chip"
- depends on ARCH_AT91
+ depends on HAS_IOMEM
help
Say Y or M if you want to add support for codecs attached to
the ATMEL SSC interface. You will also need
@@ -24,7 +24,7 @@ config SND_ATMEL_SOC_SSC
config SND_AT91_SOC_SAM9G20_WM8731
tristate "SoC Audio support for WM8731-based At91sam9g20 evaluation board"
- depends on ATMEL_SSC && SND_ATMEL_SOC && AT91_PROGRAMMABLE_CLOCKS
+ depends on ARCH_AT91 && ATMEL_SSC && SND_ATMEL_SOC && AT91_PROGRAMMABLE_CLOCKS
select SND_ATMEL_SOC_PDC
select SND_ATMEL_SOC_SSC
select SND_SOC_WM8731
@@ -34,7 +34,7 @@ config SND_AT91_SOC_SAM9G20_WM8731
config SND_AT91_SOC_AFEB9260
tristate "SoC Audio support for AFEB9260 board"
- depends on ATMEL_SSC && ARCH_AT91 && MACH_AFEB9260 && SND_ATMEL_SOC
+ depends on ARCH_AT91 && ATMEL_SSC && ARCH_AT91 && MACH_AFEB9260 && SND_ATMEL_SOC
select SND_ATMEL_SOC_PDC
select SND_ATMEL_SOC_SSC
select SND_SOC_TLV320AIC23
diff --git a/sound/soc/atmel/atmel-pcm-pdc.c b/sound/soc/atmel/atmel-pcm-pdc.c
index 6a293c7..054ea4d 100644
--- a/sound/soc/atmel/atmel-pcm-pdc.c
+++ b/sound/soc/atmel/atmel-pcm-pdc.c
@@ -159,7 +159,7 @@ static int atmel_pcm_hw_params(struct snd_pcm_substream *substream,
pr_debug("atmel-pcm: "
"hw_params: DMA for %s initialized "
- "(dma_bytes=%u, period_size=%u)\n",
+ "(dma_bytes=%zu, period_size=%zu)\n",
prtd->params->name,
runtime->dma_bytes,
prtd->period_size);
@@ -201,7 +201,7 @@ static int atmel_pcm_trigger(struct snd_pcm_substream *substream,
int ret = 0;
pr_debug("atmel-pcm:buffer_size = %ld,"
- "dma_area = %p, dma_bytes = %u\n",
+ "dma_area = %p, dma_bytes = %zu\n",
rtd->buffer_size, rtd->dma_area, rtd->dma_bytes);
switch (cmd) {
diff --git a/sound/soc/atmel/atmel-pcm.c b/sound/soc/atmel/atmel-pcm.c
index e99f181..3109db7 100644
--- a/sound/soc/atmel/atmel-pcm.c
+++ b/sound/soc/atmel/atmel-pcm.c
@@ -49,7 +49,7 @@ static int atmel_pcm_preallocate_dma_buffer(struct snd_pcm *pcm,
buf->private_data = NULL;
buf->area = dma_alloc_coherent(pcm->card->dev, size,
&buf->addr, GFP_KERNEL);
- pr_debug("atmel-pcm: alloc dma buffer: area=%p, addr=%p, size=%d\n",
+ pr_debug("atmel-pcm: alloc dma buffer: area=%p, addr=%p, size=%zu\n",
(void *)buf->area, (void *)buf->addr, size);
if (!buf->area)
diff --git a/sound/soc/atmel/atmel_ssc_dai.c b/sound/soc/atmel/atmel_ssc_dai.c
index 1c76634..2755750 100644
--- a/sound/soc/atmel/atmel_ssc_dai.c
+++ b/sound/soc/atmel/atmel_ssc_dai.c
@@ -42,8 +42,6 @@
#include <sound/initval.h>
#include <sound/soc.h>
-#include <mach/hardware.h>
-
#include "atmel-pcm.h"
#include "atmel_ssc_dai.h"
--
1.8.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] ASoC: atmel-soc: make it buildable on other architectures
2012-12-08 13:23 [PATCH] ASoC: atmel-soc: make it buildable on other architectures Joachim Eastwood
@ 2012-12-10 9:54 ` Bo Shen
2012-12-10 10:04 ` Nicolas Ferre
2012-12-13 11:21 ` Nicolas Ferre
2012-12-24 15:49 ` Mark Brown
2 siblings, 1 reply; 5+ messages in thread
From: Bo Shen @ 2012-12-10 9:54 UTC (permalink / raw)
To: Joachim Eastwood
Cc: plagnioj, nicolas.ferre, broonie, linux-arm-kernel, alsa-devel,
linux-sound
Hi Joachim Eastwood,
On 12/8/2012 21:23, Joachim Eastwood wrote:
> Not very useful on non AT91/AVR32 platforms but it provides
> more build coverage and prepares for ARM multiplatform.
>
> Also fixes a couple of format type warnings.
>
> Signed-off-by: Joachim Eastwood <manabian@gmail.com>
> ---
>
> Hi,
>
> Build tested on RM9200 and x86_64.
>
> ARCH_AT91 depend is pushed down to the machine drivers
> since they still relies on mach includes.
>
> regards
> Joachim Eastwood
>
> sound/soc/atmel/Kconfig | 6 +++---
> sound/soc/atmel/atmel-pcm-pdc.c | 4 ++--
> sound/soc/atmel/atmel-pcm.c | 2 +-
> sound/soc/atmel/atmel_ssc_dai.c | 2 --
> 4 files changed, 6 insertions(+), 8 deletions(-)
>
> diff --git a/sound/soc/atmel/Kconfig b/sound/soc/atmel/Kconfig
> index d1b691b..3fdd87f 100644
> --- a/sound/soc/atmel/Kconfig
> +++ b/sound/soc/atmel/Kconfig
> @@ -1,6 +1,6 @@
> config SND_ATMEL_SOC
> tristate "SoC Audio for the Atmel System-on-Chip"
> - depends on ARCH_AT91
> + depends on HAS_IOMEM
I don't think this change needed. This is not a physical device.
Best Regards,
Bo Shen
> help
> Say Y or M if you want to add support for codecs attached to
> the ATMEL SSC interface. You will also need
> @@ -24,7 +24,7 @@ config SND_ATMEL_SOC_SSC
>
> config SND_AT91_SOC_SAM9G20_WM8731
> tristate "SoC Audio support for WM8731-based At91sam9g20 evaluation board"
> - depends on ATMEL_SSC && SND_ATMEL_SOC && AT91_PROGRAMMABLE_CLOCKS
> + depends on ARCH_AT91 && ATMEL_SSC && SND_ATMEL_SOC && AT91_PROGRAMMABLE_CLOCKS
> select SND_ATMEL_SOC_PDC
> select SND_ATMEL_SOC_SSC
> select SND_SOC_WM8731
> @@ -34,7 +34,7 @@ config SND_AT91_SOC_SAM9G20_WM8731
>
> config SND_AT91_SOC_AFEB9260
> tristate "SoC Audio support for AFEB9260 board"
> - depends on ATMEL_SSC && ARCH_AT91 && MACH_AFEB9260 && SND_ATMEL_SOC
> + depends on ARCH_AT91 && ATMEL_SSC && ARCH_AT91 && MACH_AFEB9260 && SND_ATMEL_SOC
> select SND_ATMEL_SOC_PDC
> select SND_ATMEL_SOC_SSC
> select SND_SOC_TLV320AIC23
> diff --git a/sound/soc/atmel/atmel-pcm-pdc.c b/sound/soc/atmel/atmel-pcm-pdc.c
> index 6a293c7..054ea4d 100644
> --- a/sound/soc/atmel/atmel-pcm-pdc.c
> +++ b/sound/soc/atmel/atmel-pcm-pdc.c
> @@ -159,7 +159,7 @@ static int atmel_pcm_hw_params(struct snd_pcm_substream *substream,
>
> pr_debug("atmel-pcm: "
> "hw_params: DMA for %s initialized "
> - "(dma_bytes=%u, period_size=%u)\n",
> + "(dma_bytes=%zu, period_size=%zu)\n",
> prtd->params->name,
> runtime->dma_bytes,
> prtd->period_size);
> @@ -201,7 +201,7 @@ static int atmel_pcm_trigger(struct snd_pcm_substream *substream,
> int ret = 0;
>
> pr_debug("atmel-pcm:buffer_size = %ld,"
> - "dma_area = %p, dma_bytes = %u\n",
> + "dma_area = %p, dma_bytes = %zu\n",
> rtd->buffer_size, rtd->dma_area, rtd->dma_bytes);
>
> switch (cmd) {
> diff --git a/sound/soc/atmel/atmel-pcm.c b/sound/soc/atmel/atmel-pcm.c
> index e99f181..3109db7 100644
> --- a/sound/soc/atmel/atmel-pcm.c
> +++ b/sound/soc/atmel/atmel-pcm.c
> @@ -49,7 +49,7 @@ static int atmel_pcm_preallocate_dma_buffer(struct snd_pcm *pcm,
> buf->private_data = NULL;
> buf->area = dma_alloc_coherent(pcm->card->dev, size,
> &buf->addr, GFP_KERNEL);
> - pr_debug("atmel-pcm: alloc dma buffer: area=%p, addr=%p, size=%d\n",
> + pr_debug("atmel-pcm: alloc dma buffer: area=%p, addr=%p, size=%zu\n",
> (void *)buf->area, (void *)buf->addr, size);
>
> if (!buf->area)
> diff --git a/sound/soc/atmel/atmel_ssc_dai.c b/sound/soc/atmel/atmel_ssc_dai.c
> index 1c76634..2755750 100644
> --- a/sound/soc/atmel/atmel_ssc_dai.c
> +++ b/sound/soc/atmel/atmel_ssc_dai.c
> @@ -42,8 +42,6 @@
> #include <sound/initval.h>
> #include <sound/soc.h>
>
> -#include <mach/hardware.h>
> -
> #include "atmel-pcm.h"
> #include "atmel_ssc_dai.h"
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] ASoC: atmel-soc: make it buildable on other architectures
2012-12-10 9:54 ` Bo Shen
@ 2012-12-10 10:04 ` Nicolas Ferre
0 siblings, 0 replies; 5+ messages in thread
From: Nicolas Ferre @ 2012-12-10 10:04 UTC (permalink / raw)
To: Bo Shen
Cc: Joachim Eastwood, plagnioj, broonie, linux-arm-kernel, alsa-devel,
linux-sound
On 12/10/2012 10:54 AM, Bo Shen :
> Hi Joachim Eastwood,
>
> On 12/8/2012 21:23, Joachim Eastwood wrote:
>> Not very useful on non AT91/AVR32 platforms but it provides
>> more build coverage and prepares for ARM multiplatform.
>>
>> Also fixes a couple of format type warnings.
>>
>> Signed-off-by: Joachim Eastwood <manabian@gmail.com>
>> ---
>>
>> Hi,
>>
>> Build tested on RM9200 and x86_64.
>>
>> ARCH_AT91 depend is pushed down to the machine drivers
>> since they still relies on mach includes.
>>
>> regards
>> Joachim Eastwood
>>
>> sound/soc/atmel/Kconfig | 6 +++---
>> sound/soc/atmel/atmel-pcm-pdc.c | 4 ++--
>> sound/soc/atmel/atmel-pcm.c | 2 +-
>> sound/soc/atmel/atmel_ssc_dai.c | 2 --
>> 4 files changed, 6 insertions(+), 8 deletions(-)
>>
>> diff --git a/sound/soc/atmel/Kconfig b/sound/soc/atmel/Kconfig
>> index d1b691b..3fdd87f 100644
>> --- a/sound/soc/atmel/Kconfig
>> +++ b/sound/soc/atmel/Kconfig
>> @@ -1,6 +1,6 @@
>> config SND_ATMEL_SOC
>> tristate "SoC Audio for the Atmel System-on-Chip"
>> - depends on ARCH_AT91
>> + depends on HAS_IOMEM
>
> I don't think this change needed. This is not a physical device.
It is needed to prevent the restriction of this driver to AT91 only.
This move is interesting for build coverage and ARM multiplatform as
indicated by Joachim.
Bye,
>> help
>> Say Y or M if you want to add support for codecs attached to
>> the ATMEL SSC interface. You will also need
>> @@ -24,7 +24,7 @@ config SND_ATMEL_SOC_SSC
>>
>> config SND_AT91_SOC_SAM9G20_WM8731
>> tristate "SoC Audio support for WM8731-based At91sam9g20
>> evaluation board"
>> - depends on ATMEL_SSC && SND_ATMEL_SOC && AT91_PROGRAMMABLE_CLOCKS
>> + depends on ARCH_AT91 && ATMEL_SSC && SND_ATMEL_SOC &&
>> AT91_PROGRAMMABLE_CLOCKS
>> select SND_ATMEL_SOC_PDC
>> select SND_ATMEL_SOC_SSC
>> select SND_SOC_WM8731
>> @@ -34,7 +34,7 @@ config SND_AT91_SOC_SAM9G20_WM8731
>>
>> config SND_AT91_SOC_AFEB9260
>> tristate "SoC Audio support for AFEB9260 board"
>> - depends on ATMEL_SSC && ARCH_AT91 && MACH_AFEB9260 && SND_ATMEL_SOC
>> + depends on ARCH_AT91 && ATMEL_SSC && ARCH_AT91 && MACH_AFEB9260
>> && SND_ATMEL_SOC
>> select SND_ATMEL_SOC_PDC
>> select SND_ATMEL_SOC_SSC
>> select SND_SOC_TLV320AIC23
>> diff --git a/sound/soc/atmel/atmel-pcm-pdc.c
>> b/sound/soc/atmel/atmel-pcm-pdc.c
>> index 6a293c7..054ea4d 100644
>> --- a/sound/soc/atmel/atmel-pcm-pdc.c
>> +++ b/sound/soc/atmel/atmel-pcm-pdc.c
>> @@ -159,7 +159,7 @@ static int atmel_pcm_hw_params(struct
>> snd_pcm_substream *substream,
>>
>> pr_debug("atmel-pcm: "
>> "hw_params: DMA for %s initialized "
>> - "(dma_bytes=%u, period_size=%u)\n",
>> + "(dma_bytes=%zu, period_size=%zu)\n",
>> prtd->params->name,
>> runtime->dma_bytes,
>> prtd->period_size);
>> @@ -201,7 +201,7 @@ static int atmel_pcm_trigger(struct
>> snd_pcm_substream *substream,
>> int ret = 0;
>>
>> pr_debug("atmel-pcm:buffer_size = %ld,"
>> - "dma_area = %p, dma_bytes = %u\n",
>> + "dma_area = %p, dma_bytes = %zu\n",
>> rtd->buffer_size, rtd->dma_area, rtd->dma_bytes);
>>
>> switch (cmd) {
>> diff --git a/sound/soc/atmel/atmel-pcm.c b/sound/soc/atmel/atmel-pcm.c
>> index e99f181..3109db7 100644
>> --- a/sound/soc/atmel/atmel-pcm.c
>> +++ b/sound/soc/atmel/atmel-pcm.c
>> @@ -49,7 +49,7 @@ static int atmel_pcm_preallocate_dma_buffer(struct
>> snd_pcm *pcm,
>> buf->private_data = NULL;
>> buf->area = dma_alloc_coherent(pcm->card->dev, size,
>> &buf->addr, GFP_KERNEL);
>> - pr_debug("atmel-pcm: alloc dma buffer: area=%p, addr=%p, size=%d\n",
>> + pr_debug("atmel-pcm: alloc dma buffer: area=%p, addr=%p,
>> size=%zu\n",
>> (void *)buf->area, (void *)buf->addr, size);
>>
>> if (!buf->area)
>> diff --git a/sound/soc/atmel/atmel_ssc_dai.c
>> b/sound/soc/atmel/atmel_ssc_dai.c
>> index 1c76634..2755750 100644
>> --- a/sound/soc/atmel/atmel_ssc_dai.c
>> +++ b/sound/soc/atmel/atmel_ssc_dai.c
>> @@ -42,8 +42,6 @@
>> #include <sound/initval.h>
>> #include <sound/soc.h>
>>
>> -#include <mach/hardware.h>
>> -
>> #include "atmel-pcm.h"
>> #include "atmel_ssc_dai.h"
>>
>>
>
>
>
--
Nicolas Ferre
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] ASoC: atmel-soc: make it buildable on other architectures
2012-12-08 13:23 [PATCH] ASoC: atmel-soc: make it buildable on other architectures Joachim Eastwood
2012-12-10 9:54 ` Bo Shen
@ 2012-12-13 11:21 ` Nicolas Ferre
2012-12-24 15:49 ` Mark Brown
2 siblings, 0 replies; 5+ messages in thread
From: Nicolas Ferre @ 2012-12-13 11:21 UTC (permalink / raw)
To: Joachim Eastwood, broonie
Cc: voice.shen, plagnioj, linux-arm-kernel, alsa-devel, linux-sound
On 12/08/2012 02:23 PM, Joachim Eastwood :
> Not very useful on non AT91/AVR32 platforms but it provides
> more build coverage and prepares for ARM multiplatform.
>
> Also fixes a couple of format type warnings.
>
> Signed-off-by: Joachim Eastwood <manabian@gmail.com>
seems ok:
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
> ---
>
> Hi,
>
> Build tested on RM9200 and x86_64.
>
> ARCH_AT91 depend is pushed down to the machine drivers
> since they still relies on mach includes.
>
> regards
> Joachim Eastwood
>
> sound/soc/atmel/Kconfig | 6 +++---
> sound/soc/atmel/atmel-pcm-pdc.c | 4 ++--
> sound/soc/atmel/atmel-pcm.c | 2 +-
> sound/soc/atmel/atmel_ssc_dai.c | 2 --
> 4 files changed, 6 insertions(+), 8 deletions(-)
>
> diff --git a/sound/soc/atmel/Kconfig b/sound/soc/atmel/Kconfig
> index d1b691b..3fdd87f 100644
> --- a/sound/soc/atmel/Kconfig
> +++ b/sound/soc/atmel/Kconfig
> @@ -1,6 +1,6 @@
> config SND_ATMEL_SOC
> tristate "SoC Audio for the Atmel System-on-Chip"
> - depends on ARCH_AT91
> + depends on HAS_IOMEM
> help
> Say Y or M if you want to add support for codecs attached to
> the ATMEL SSC interface. You will also need
> @@ -24,7 +24,7 @@ config SND_ATMEL_SOC_SSC
>
> config SND_AT91_SOC_SAM9G20_WM8731
> tristate "SoC Audio support for WM8731-based At91sam9g20 evaluation board"
> - depends on ATMEL_SSC && SND_ATMEL_SOC && AT91_PROGRAMMABLE_CLOCKS
> + depends on ARCH_AT91 && ATMEL_SSC && SND_ATMEL_SOC && AT91_PROGRAMMABLE_CLOCKS
> select SND_ATMEL_SOC_PDC
> select SND_ATMEL_SOC_SSC
> select SND_SOC_WM8731
> @@ -34,7 +34,7 @@ config SND_AT91_SOC_SAM9G20_WM8731
>
> config SND_AT91_SOC_AFEB9260
> tristate "SoC Audio support for AFEB9260 board"
> - depends on ATMEL_SSC && ARCH_AT91 && MACH_AFEB9260 && SND_ATMEL_SOC
> + depends on ARCH_AT91 && ATMEL_SSC && ARCH_AT91 && MACH_AFEB9260 && SND_ATMEL_SOC
> select SND_ATMEL_SOC_PDC
> select SND_ATMEL_SOC_SSC
> select SND_SOC_TLV320AIC23
> diff --git a/sound/soc/atmel/atmel-pcm-pdc.c b/sound/soc/atmel/atmel-pcm-pdc.c
> index 6a293c7..054ea4d 100644
> --- a/sound/soc/atmel/atmel-pcm-pdc.c
> +++ b/sound/soc/atmel/atmel-pcm-pdc.c
> @@ -159,7 +159,7 @@ static int atmel_pcm_hw_params(struct snd_pcm_substream *substream,
>
> pr_debug("atmel-pcm: "
> "hw_params: DMA for %s initialized "
> - "(dma_bytes=%u, period_size=%u)\n",
> + "(dma_bytes=%zu, period_size=%zu)\n",
> prtd->params->name,
> runtime->dma_bytes,
> prtd->period_size);
> @@ -201,7 +201,7 @@ static int atmel_pcm_trigger(struct snd_pcm_substream *substream,
> int ret = 0;
>
> pr_debug("atmel-pcm:buffer_size = %ld,"
> - "dma_area = %p, dma_bytes = %u\n",
> + "dma_area = %p, dma_bytes = %zu\n",
> rtd->buffer_size, rtd->dma_area, rtd->dma_bytes);
>
> switch (cmd) {
> diff --git a/sound/soc/atmel/atmel-pcm.c b/sound/soc/atmel/atmel-pcm.c
> index e99f181..3109db7 100644
> --- a/sound/soc/atmel/atmel-pcm.c
> +++ b/sound/soc/atmel/atmel-pcm.c
> @@ -49,7 +49,7 @@ static int atmel_pcm_preallocate_dma_buffer(struct snd_pcm *pcm,
> buf->private_data = NULL;
> buf->area = dma_alloc_coherent(pcm->card->dev, size,
> &buf->addr, GFP_KERNEL);
> - pr_debug("atmel-pcm: alloc dma buffer: area=%p, addr=%p, size=%d\n",
> + pr_debug("atmel-pcm: alloc dma buffer: area=%p, addr=%p, size=%zu\n",
> (void *)buf->area, (void *)buf->addr, size);
>
> if (!buf->area)
> diff --git a/sound/soc/atmel/atmel_ssc_dai.c b/sound/soc/atmel/atmel_ssc_dai.c
> index 1c76634..2755750 100644
> --- a/sound/soc/atmel/atmel_ssc_dai.c
> +++ b/sound/soc/atmel/atmel_ssc_dai.c
> @@ -42,8 +42,6 @@
> #include <sound/initval.h>
> #include <sound/soc.h>
>
> -#include <mach/hardware.h>
> -
> #include "atmel-pcm.h"
> #include "atmel_ssc_dai.h"
>
>
--
Nicolas Ferre
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] ASoC: atmel-soc: make it buildable on other architectures
2012-12-08 13:23 [PATCH] ASoC: atmel-soc: make it buildable on other architectures Joachim Eastwood
2012-12-10 9:54 ` Bo Shen
2012-12-13 11:21 ` Nicolas Ferre
@ 2012-12-24 15:49 ` Mark Brown
2 siblings, 0 replies; 5+ messages in thread
From: Mark Brown @ 2012-12-24 15:49 UTC (permalink / raw)
To: Joachim Eastwood
Cc: voice.shen, plagnioj, nicolas.ferre, linux-arm-kernel, alsa-devel,
linux-sound
[-- Attachment #1: Type: text/plain, Size: 282 bytes --]
On Sat, Dec 08, 2012 at 02:23:22PM +0100, Joachim Eastwood wrote:
> Not very useful on non AT91/AVR32 platforms but it provides
> more build coverage and prepares for ARM multiplatform.
Applied, thanks. Would be nice if this had a different subject line to
the previous commit...
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-12-24 15:49 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-08 13:23 [PATCH] ASoC: atmel-soc: make it buildable on other architectures Joachim Eastwood
2012-12-10 9:54 ` Bo Shen
2012-12-10 10:04 ` Nicolas Ferre
2012-12-13 11:21 ` Nicolas Ferre
2012-12-24 15:49 ` Mark Brown
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).