All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fixup for v3.7
@ 2012-09-25 17:47 Tony Prisk
  2012-09-25 17:47 ` [PATCH] arm: vt8500: Fixup for missing gpio.h Tony Prisk
  0 siblings, 1 reply; 5+ messages in thread
From: Tony Prisk @ 2012-09-25 17:47 UTC (permalink / raw)
  To: linux-arm-kernel

Olof: Could you apply this patch by hand? Fixes a compile-time error in
v3.7 which prevents building vt8500 since gpio.h was removed as part
of the multiplatform update.

Tony Prisk (1):
  arm: vt8500: Fixup for missing gpio.h

 arch/arm/mach-vt8500/vt8500.c |    1 -
 1 file changed, 1 deletion(-)

-- 
1.7.9.5

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

* [PATCH] arm: vt8500: Fixup for missing gpio.h
  2012-09-25 17:47 [PATCH] Fixup for v3.7 Tony Prisk
@ 2012-09-25 17:47 ` Tony Prisk
  2012-09-29 21:18   ` Olof Johansson
  0 siblings, 1 reply; 5+ messages in thread
From: Tony Prisk @ 2012-09-25 17:47 UTC (permalink / raw)
  To: linux-arm-kernel

mach/include/gpio.h was removed as part of the multiplatform-3.7
update. This patch removes the include from arch-vt8500/vt8500.c

Signed-off-by: Tony Prisk <linux@prisktech.co.nz>
---
 arch/arm/mach-vt8500/vt8500.c |    1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/arm/mach-vt8500/vt8500.c b/arch/arm/mach-vt8500/vt8500.c
index 4494993..587ea95 100644
--- a/arch/arm/mach-vt8500/vt8500.c
+++ b/arch/arm/mach-vt8500/vt8500.c
@@ -32,7 +32,6 @@
 #include <linux/of_platform.h>
 
 #include <mach/restart.h>
-#include <mach/gpio.h>
 
 #include "common.h"
 
-- 
1.7.9.5

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

* [PATCH] arm: vt8500: Fixup for missing gpio.h
  2012-09-25 17:47 ` [PATCH] arm: vt8500: Fixup for missing gpio.h Tony Prisk
@ 2012-09-29 21:18   ` Olof Johansson
  2012-09-29 21:58     ` Tony Prisk
  2012-09-30 12:00     ` Arnd Bergmann
  0 siblings, 2 replies; 5+ messages in thread
From: Olof Johansson @ 2012-09-29 21:18 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Sep 26, 2012 at 05:47:19AM +1200, Tony Prisk wrote:
> mach/include/gpio.h was removed as part of the multiplatform-3.7
> update. This patch removes the include from arch-vt8500/vt8500.c
> 
> Signed-off-by: Tony Prisk <linux@prisktech.co.nz>
> ---
>  arch/arm/mach-vt8500/vt8500.c |    1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/arch/arm/mach-vt8500/vt8500.c b/arch/arm/mach-vt8500/vt8500.c
> index 4494993..587ea95 100644
> --- a/arch/arm/mach-vt8500/vt8500.c
> +++ b/arch/arm/mach-vt8500/vt8500.c
> @@ -32,7 +32,6 @@
>  #include <linux/of_platform.h>
>  
>  #include <mach/restart.h>
> -#include <mach/gpio.h>
>  
>  #include "common.h"

Applied on top of existing vt8500/devel branch, thanks.

By the way, I noticed that there is no VT8500 defconfig in the tree, so there's
no easy way for us to check for build breakages of your platform. You might
want to add one.

Also, I noticed the following build warnings that you might want to address
when I just built a very trivial config that enables the platform:

arch/arm/mach-vt8500/vt8500.c: In function 'vt8500_init':
arch/arm/mach-vt8500/vt8500.c:81:8: warning: unused variable 'gpio_base' [-Wunused-variable]
arch/arm/mach-vt8500/vt8500.c:80:27: warning: unused variable 'fb' [-Wunused-variable]


-Olof

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

* [PATCH] arm: vt8500: Fixup for missing gpio.h
  2012-09-29 21:18   ` Olof Johansson
@ 2012-09-29 21:58     ` Tony Prisk
  2012-09-30 12:00     ` Arnd Bergmann
  1 sibling, 0 replies; 5+ messages in thread
From: Tony Prisk @ 2012-09-29 21:58 UTC (permalink / raw)
  To: linux-arm-kernel

On Sat, 2012-09-29 at 14:18 -0700, Olof Johansson wrote:
> On Wed, Sep 26, 2012 at 05:47:19AM +1200, Tony Prisk wrote:
> > mach/include/gpio.h was removed as part of the multiplatform-3.7
> > update. This patch removes the include from arch-vt8500/vt8500.c
> > 
> > Signed-off-by: Tony Prisk <linux@prisktech.co.nz>
> > ---
> >  arch/arm/mach-vt8500/vt8500.c |    1 -
> >  1 file changed, 1 deletion(-)
> > 
> > diff --git a/arch/arm/mach-vt8500/vt8500.c b/arch/arm/mach-vt8500/vt8500.c
> > index 4494993..587ea95 100644
> > --- a/arch/arm/mach-vt8500/vt8500.c
> > +++ b/arch/arm/mach-vt8500/vt8500.c
> > @@ -32,7 +32,6 @@
> >  #include <linux/of_platform.h>
> >  
> >  #include <mach/restart.h>
> > -#include <mach/gpio.h>
> >  
> >  #include "common.h"
> 
> Applied on top of existing vt8500/devel branch, thanks.
> 
> By the way, I noticed that there is no VT8500 defconfig in the tree, so there's
> no easy way for us to check for build breakages of your platform. You might
> want to add one.
> 
> Also, I noticed the following build warnings that you might want to address
> when I just built a very trivial config that enables the platform:
> 
> arch/arm/mach-vt8500/vt8500.c: In function 'vt8500_init':
> arch/arm/mach-vt8500/vt8500.c:81:8: warning: unused variable 'gpio_base' [-Wunused-variable]
> arch/arm/mach-vt8500/vt8500.c:80:27: warning: unused variable 'fb' [-Wunused-variable]
> 
> 
> -Olof

Argh.. I fixed that twice already.
Somehow I must have lost it while fixing up other problems.

I'll include that in the 3.7 cleanup stuff once -rc comes around.

Regards

Tony P

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

* [PATCH] arm: vt8500: Fixup for missing gpio.h
  2012-09-29 21:18   ` Olof Johansson
  2012-09-29 21:58     ` Tony Prisk
@ 2012-09-30 12:00     ` Arnd Bergmann
  1 sibling, 0 replies; 5+ messages in thread
From: Arnd Bergmann @ 2012-09-30 12:00 UTC (permalink / raw)
  To: linux-arm-kernel

On Saturday 29 September 2012, Olof Johansson wrote:
> By the way, I noticed that there is no VT8500 defconfig in the tree, so there's
> no easy way for us to check for build breakages of your platform. You might
> want to add one.

I suppose if Tony and the other vt8500 developers manage to get the platform
enabled for CONFIG_MULTIPLATFORM in 3.8, we can simply enable it in a future
multi_v5_defconfig and don't even need the specific one.

On the other hand, those systems are fairly resource limited, so maybe
we want to do both after all.

	Arnd

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

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

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-09-25 17:47 [PATCH] Fixup for v3.7 Tony Prisk
2012-09-25 17:47 ` [PATCH] arm: vt8500: Fixup for missing gpio.h Tony Prisk
2012-09-29 21:18   ` Olof Johansson
2012-09-29 21:58     ` Tony Prisk
2012-09-30 12:00     ` Arnd Bergmann

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.