linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] atmel-ssc: include linux/io.h for raw io
@ 2012-08-13 19:59 Joachim Eastwood
  2012-08-23 12:44 ` Nicolas Ferre
  2012-08-23 12:51 ` Nicolas Ferre
  0 siblings, 2 replies; 12+ messages in thread
From: Joachim Eastwood @ 2012-08-13 19:59 UTC (permalink / raw)
  To: linux-arm-kernel

Include linux/io.h for raw io operations in atmel-scc header.

This fixes the following build error:
  CC [M]  sound/soc/atmel/atmel_ssc_dai.o
sound/soc/atmel/atmel_ssc_dai.c: In function 'atmel_ssc_interrupt':
sound/soc/atmel/atmel_ssc_dai.c:171: error: implicit declaration of function '__raw_readl'
sound/soc/atmel/atmel_ssc_dai.c: In function 'atmel_ssc_shutdown':
sound/soc/atmel/atmel_ssc_dai.c:249: error: implicit declaration of function '__raw_writel'

Signed-off-by: Joachim Eastwood <joachim.eastwood@jotron.com>
---
 include/linux/atmel-ssc.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/linux/atmel-ssc.h b/include/linux/atmel-ssc.h
index 0602339..4eb3175 100644
--- a/include/linux/atmel-ssc.h
+++ b/include/linux/atmel-ssc.h
@@ -3,6 +3,7 @@
 
 #include <linux/platform_device.h>
 #include <linux/list.h>
+#include <linux/io.h>
 
 struct ssc_device {
 	struct list_head	list;
-- 
1.7.11

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH] atmel-ssc: include linux/io.h for raw io
  2012-08-13 19:59 [PATCH] atmel-ssc: include linux/io.h for raw io Joachim Eastwood
@ 2012-08-23 12:44 ` Nicolas Ferre
  2012-08-23 13:31   ` Arnd Bergmann
  2012-08-23 12:51 ` Nicolas Ferre
  1 sibling, 1 reply; 12+ messages in thread
From: Nicolas Ferre @ 2012-08-23 12:44 UTC (permalink / raw)
  To: linux-arm-kernel

On 08/13/2012 09:59 PM, Joachim Eastwood :
> Include linux/io.h for raw io operations in atmel-scc header.
> 
> This fixes the following build error:
>   CC [M]  sound/soc/atmel/atmel_ssc_dai.o
> sound/soc/atmel/atmel_ssc_dai.c: In function 'atmel_ssc_interrupt':
> sound/soc/atmel/atmel_ssc_dai.c:171: error: implicit declaration of function '__raw_readl'
> sound/soc/atmel/atmel_ssc_dai.c: In function 'atmel_ssc_shutdown':
> sound/soc/atmel/atmel_ssc_dai.c:249: error: implicit declaration of function '__raw_writel'
> 
> Signed-off-by: Joachim Eastwood <joachim.eastwood@jotron.com>

Added to at91-fixes for 3.6. Thanks!

Arnd, can I queue this one in my upcoming pull-request to you?

> ---
>  include/linux/atmel-ssc.h | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/include/linux/atmel-ssc.h b/include/linux/atmel-ssc.h
> index 0602339..4eb3175 100644
> --- a/include/linux/atmel-ssc.h
> +++ b/include/linux/atmel-ssc.h
> @@ -3,6 +3,7 @@
>  
>  #include <linux/platform_device.h>
>  #include <linux/list.h>
> +#include <linux/io.h>
>  
>  struct ssc_device {
>  	struct list_head	list;
> 


-- 
Nicolas Ferre

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH] atmel-ssc: include linux/io.h for raw io
  2012-08-13 19:59 [PATCH] atmel-ssc: include linux/io.h for raw io Joachim Eastwood
  2012-08-23 12:44 ` Nicolas Ferre
@ 2012-08-23 12:51 ` Nicolas Ferre
  2012-08-23 15:23   ` Mark Brown
  1 sibling, 1 reply; 12+ messages in thread
From: Nicolas Ferre @ 2012-08-23 12:51 UTC (permalink / raw)
  To: linux-arm-kernel

On 08/13/2012 09:59 PM, Joachim Eastwood :
> Include linux/io.h for raw io operations in atmel-scc header.
> 
> This fixes the following build error:
>   CC [M]  sound/soc/atmel/atmel_ssc_dai.o
> sound/soc/atmel/atmel_ssc_dai.c: In function 'atmel_ssc_interrupt':
> sound/soc/atmel/atmel_ssc_dai.c:171: error: implicit declaration of function '__raw_readl'
> sound/soc/atmel/atmel_ssc_dai.c: In function 'atmel_ssc_shutdown':
> sound/soc/atmel/atmel_ssc_dai.c:249: error: implicit declaration of function '__raw_writel'
>
> Signed-off-by: Joachim Eastwood <joachim.eastwood@jotron.com>

Liam, Mark,

May I have your Acked-by for this patch, I plan to queue it with my
other at91-related fixes in arm-soc tree?

Thanks, best regards,

> ---
>  include/linux/atmel-ssc.h | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/include/linux/atmel-ssc.h b/include/linux/atmel-ssc.h
> index 0602339..4eb3175 100644
> --- a/include/linux/atmel-ssc.h
> +++ b/include/linux/atmel-ssc.h
> @@ -3,6 +3,7 @@
>  
>  #include <linux/platform_device.h>
>  #include <linux/list.h>
> +#include <linux/io.h>
>  
>  struct ssc_device {
>  	struct list_head	list;
> 


-- 
Nicolas Ferre

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH] atmel-ssc: include linux/io.h for raw io
  2012-08-23 12:44 ` Nicolas Ferre
@ 2012-08-23 13:31   ` Arnd Bergmann
  0 siblings, 0 replies; 12+ messages in thread
From: Arnd Bergmann @ 2012-08-23 13:31 UTC (permalink / raw)
  To: linux-arm-kernel

On Thursday 23 August 2012, Nicolas Ferre wrote:
> On 08/13/2012 09:59 PM, Joachim Eastwood :
> > Include linux/io.h for raw io operations in atmel-scc header.
> > 
> > This fixes the following build error:
> >   CC [M]  sound/soc/atmel/atmel_ssc_dai.o
> > sound/soc/atmel/atmel_ssc_dai.c: In function 'atmel_ssc_interrupt':
> > sound/soc/atmel/atmel_ssc_dai.c:171: error: implicit declaration of function '__raw_readl'
> > sound/soc/atmel/atmel_ssc_dai.c: In function 'atmel_ssc_shutdown':
> > sound/soc/atmel/atmel_ssc_dai.c:249: error: implicit declaration of function '__raw_writel'
> > 
> > Signed-off-by: Joachim Eastwood <joachim.eastwood@jotron.com>
> 
> Added to at91-fixes for 3.6. Thanks!
> 
> Arnd, can I queue this one in my upcoming pull-request to you?
> 

Sure, no problem.

	Arnd

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH] atmel-ssc: include linux/io.h for raw io
  2012-08-23 12:51 ` Nicolas Ferre
@ 2012-08-23 15:23   ` Mark Brown
  2012-08-23 16:14     ` [PATCH] ASoC: " Nicolas Ferre
  0 siblings, 1 reply; 12+ messages in thread
From: Mark Brown @ 2012-08-23 15:23 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Aug 23, 2012 at 02:51:25PM +0200, Nicolas Ferre wrote:

> May I have your Acked-by for this patch, I plan to queue it with my
> other at91-related fixes in arm-soc tree?

Don't think the original patch was CCed to me - can you send me a copy
please and I'll take a look?
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20120823/c63b9cf6/attachment.sig>

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH] ASoC: atmel-ssc: include linux/io.h for raw io
  2012-08-23 15:23   ` Mark Brown
@ 2012-08-23 16:14     ` Nicolas Ferre
  2012-08-23 16:46       ` Jean-Christophe PLAGNIOL-VILLARD
                         ` (2 more replies)
  0 siblings, 3 replies; 12+ messages in thread
From: Nicolas Ferre @ 2012-08-23 16:14 UTC (permalink / raw)
  To: linux-arm-kernel

From: Joachim Eastwood <manabian@gmail.com>

Include linux/io.h for raw io operations in atmel-scc header.

This fixes the following build error:
  CC [M]  sound/soc/atmel/atmel_ssc_dai.o
sound/soc/atmel/atmel_ssc_dai.c: In function 'atmel_ssc_interrupt':
sound/soc/atmel/atmel_ssc_dai.c:171: error: implicit declaration of function '__raw_readl'
sound/soc/atmel/atmel_ssc_dai.c: In function 'atmel_ssc_shutdown':
sound/soc/atmel/atmel_ssc_dai.c:249: error: implicit declaration of function '__raw_writel'

Signed-off-by: Joachim Eastwood <joachim.eastwood@jotron.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
---
Mark,

Here is a copy of the original patch by Joachim. Can you please take a look and
give your acknowledgement so that I can queue it in arm-soc tree.

Thanks, bye,

 include/linux/atmel-ssc.h |    1 +
 1 file changed, 1 insertion(+)

diff --git a/include/linux/atmel-ssc.h b/include/linux/atmel-ssc.h
index 0602339..4eb3175 100644
--- a/include/linux/atmel-ssc.h
+++ b/include/linux/atmel-ssc.h
@@ -3,6 +3,7 @@
 
 #include <linux/platform_device.h>
 #include <linux/list.h>
+#include <linux/io.h>
 
 struct ssc_device {
 	struct list_head	list;
-- 
1.7.10

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH] ASoC: atmel-ssc: include linux/io.h for raw io
  2012-08-23 16:14     ` [PATCH] ASoC: " Nicolas Ferre
@ 2012-08-23 16:46       ` Jean-Christophe PLAGNIOL-VILLARD
  2012-08-25 20:25       ` Mark Brown
  2012-08-27 16:23       ` Mark Brown
  2 siblings, 0 replies; 12+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2012-08-23 16:46 UTC (permalink / raw)
  To: linux-arm-kernel

On 18:14 Thu 23 Aug     , Nicolas Ferre wrote:
> From: Joachim Eastwood <manabian@gmail.com>
> 
> Include linux/io.h for raw io operations in atmel-scc header.
> 
> This fixes the following build error:
>   CC [M]  sound/soc/atmel/atmel_ssc_dai.o
> sound/soc/atmel/atmel_ssc_dai.c: In function 'atmel_ssc_interrupt':
> sound/soc/atmel/atmel_ssc_dai.c:171: error: implicit declaration of function '__raw_readl'
> sound/soc/atmel/atmel_ssc_dai.c: In function 'atmel_ssc_shutdown':
> sound/soc/atmel/atmel_ssc_dai.c:249: error: implicit declaration of function '__raw_writel'
> 
> Signed-off-by: Joachim Eastwood <joachim.eastwood@jotron.com>
> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>

Best Regards,
J.
> ---
> Mark,
> 
> Here is a copy of the original patch by Joachim. Can you please take a look and
> give your acknowledgement so that I can queue it in arm-soc tree.
> 
> Thanks, bye,
> 
>  include/linux/atmel-ssc.h |    1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/include/linux/atmel-ssc.h b/include/linux/atmel-ssc.h
> index 0602339..4eb3175 100644
> --- a/include/linux/atmel-ssc.h
> +++ b/include/linux/atmel-ssc.h
> @@ -3,6 +3,7 @@
>  
>  #include <linux/platform_device.h>
>  #include <linux/list.h>
> +#include <linux/io.h>
>  
>  struct ssc_device {
>  	struct list_head	list;
> -- 
> 1.7.10
> 
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH] ASoC: atmel-ssc: include linux/io.h for raw io
  2012-08-23 16:14     ` [PATCH] ASoC: " Nicolas Ferre
  2012-08-23 16:46       ` Jean-Christophe PLAGNIOL-VILLARD
@ 2012-08-25 20:25       ` Mark Brown
  2012-08-27  8:01         ` Nicolas Ferre
  2012-08-27 16:23       ` Mark Brown
  2 siblings, 1 reply; 12+ messages in thread
From: Mark Brown @ 2012-08-25 20:25 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Aug 23, 2012 at 06:14:54PM +0200, Nicolas Ferre wrote:
> From: Joachim Eastwood <manabian@gmail.com>
> 
> Include linux/io.h for raw io operations in atmel-scc header.
> 
> This fixes the following build error:
>   CC [M]  sound/soc/atmel/atmel_ssc_dai.o
> sound/soc/atmel/atmel_ssc_dai.c: In function 'atmel_ssc_interrupt':
> sound/soc/atmel/atmel_ssc_dai.c:171: error: implicit declaration of function '__raw_readl'
> sound/soc/atmel/atmel_ssc_dai.c: In function 'atmel_ssc_shutdown':
> sound/soc/atmel/atmel_ssc_dai.c:249: error: implicit declaration of function '__raw_writel'

Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>

but why not just apply it to the ASoC tree?

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH] ASoC: atmel-ssc: include linux/io.h for raw io
  2012-08-25 20:25       ` Mark Brown
@ 2012-08-27  8:01         ` Nicolas Ferre
  2012-09-11 12:15           ` Nicolas Ferre
  0 siblings, 1 reply; 12+ messages in thread
From: Nicolas Ferre @ 2012-08-27  8:01 UTC (permalink / raw)
  To: linux-arm-kernel

On 08/25/2012 10:25 PM, Mark Brown :
> On Thu, Aug 23, 2012 at 06:14:54PM +0200, Nicolas Ferre wrote:
>> From: Joachim Eastwood <manabian@gmail.com>
>>
>> Include linux/io.h for raw io operations in atmel-scc header.
>>
>> This fixes the following build error:
>>   CC [M]  sound/soc/atmel/atmel_ssc_dai.o
>> sound/soc/atmel/atmel_ssc_dai.c: In function 'atmel_ssc_interrupt':
>> sound/soc/atmel/atmel_ssc_dai.c:171: error: implicit declaration of function '__raw_readl'
>> sound/soc/atmel/atmel_ssc_dai.c: In function 'atmel_ssc_shutdown':
>> sound/soc/atmel/atmel_ssc_dai.c:249: error: implicit declaration of function '__raw_writel'
> 
> Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
> 
> but why not just apply it to the ASoC tree?

Fine by me then: so Mark, can you take it for a 3.6 fixes branch?

(I remove it from my at91-fixes branch that will go through arm-soc tree).

Best regards,
-- 
Nicolas Ferre

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH] ASoC: atmel-ssc: include linux/io.h for raw io
  2012-08-23 16:14     ` [PATCH] ASoC: " Nicolas Ferre
  2012-08-23 16:46       ` Jean-Christophe PLAGNIOL-VILLARD
  2012-08-25 20:25       ` Mark Brown
@ 2012-08-27 16:23       ` Mark Brown
  2 siblings, 0 replies; 12+ messages in thread
From: Mark Brown @ 2012-08-27 16:23 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Aug 23, 2012 at 06:14:54PM +0200, Nicolas Ferre wrote:
> From: Joachim Eastwood <manabian@gmail.com>
> 
> Include linux/io.h for raw io operations in atmel-scc header.

Applied, thanks.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH] ASoC: atmel-ssc: include linux/io.h for raw io
  2012-08-27  8:01         ` Nicolas Ferre
@ 2012-09-11 12:15           ` Nicolas Ferre
  2012-09-11 12:38             ` Mark Brown
  0 siblings, 1 reply; 12+ messages in thread
From: Nicolas Ferre @ 2012-09-11 12:15 UTC (permalink / raw)
  To: linux-arm-kernel

On 08/27/2012 10:01 AM, Nicolas Ferre :
> On 08/25/2012 10:25 PM, Mark Brown :
>> On Thu, Aug 23, 2012 at 06:14:54PM +0200, Nicolas Ferre wrote:
>>> From: Joachim Eastwood <manabian@gmail.com>
>>>
>>> Include linux/io.h for raw io operations in atmel-scc header.
>>>
>>> This fixes the following build error:
>>>   CC [M]  sound/soc/atmel/atmel_ssc_dai.o
>>> sound/soc/atmel/atmel_ssc_dai.c: In function 'atmel_ssc_interrupt':
>>> sound/soc/atmel/atmel_ssc_dai.c:171: error: implicit declaration of function '__raw_readl'
>>> sound/soc/atmel/atmel_ssc_dai.c: In function 'atmel_ssc_shutdown':
>>> sound/soc/atmel/atmel_ssc_dai.c:249: error: implicit declaration of function '__raw_writel'
>>
>> Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
>>
>> but why not just apply it to the ASoC tree?
> 
> Fine by me then: so Mark, can you take it for a 3.6 fixes branch?
> 
> (I remove it from my at91-fixes branch that will go through arm-soc tree).

Hi Mark,

Ping?

Best regards,
-- 
Nicolas Ferre

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH] ASoC: atmel-ssc: include linux/io.h for raw io
  2012-09-11 12:15           ` Nicolas Ferre
@ 2012-09-11 12:38             ` Mark Brown
  0 siblings, 0 replies; 12+ messages in thread
From: Mark Brown @ 2012-09-11 12:38 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Sep 11, 2012 at 02:15:18PM +0200, Nicolas Ferre wrote:

> Ping?

Pong.  Don't send contentless pings...  If you want me to apply the
patch someone should send me a copy.

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2012-09-11 12:38 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-13 19:59 [PATCH] atmel-ssc: include linux/io.h for raw io Joachim Eastwood
2012-08-23 12:44 ` Nicolas Ferre
2012-08-23 13:31   ` Arnd Bergmann
2012-08-23 12:51 ` Nicolas Ferre
2012-08-23 15:23   ` Mark Brown
2012-08-23 16:14     ` [PATCH] ASoC: " Nicolas Ferre
2012-08-23 16:46       ` Jean-Christophe PLAGNIOL-VILLARD
2012-08-25 20:25       ` Mark Brown
2012-08-27  8:01         ` Nicolas Ferre
2012-09-11 12:15           ` Nicolas Ferre
2012-09-11 12:38             ` Mark Brown
2012-08-27 16:23       ` 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).