public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Remove duplicate definitions
@ 2009-06-16 11:14 Sanjeev Premi
  2009-06-17  8:52 ` Tony Lindgren
  0 siblings, 1 reply; 3+ messages in thread
From: Sanjeev Premi @ 2009-06-16 11:14 UTC (permalink / raw)
  To: linux-omap; +Cc: Sanjeev Premi

Fixes the duplicate definitions of KEY and PERSISTENT_KEY
leading to these compile-time warnings:

In file included from arch/arm/mach-omap2/board-omap3evm.c:39:
arch/arm/plat-omap/include/mach/keypad.h:38:1: warning: "KEY" redefined
In file included from arch/arm/mach-omap2/board-omap3evm.c:27:
include/linux/i2c/twl4030.h:341:1: warning: this is the location of the previous definition
In file included from arch/arm/mach-omap2/board-omap3evm.c:39:
arch/arm/plat-omap/include/mach/keypad.h:39:1: warning: "PERSISTENT_KEY" redefined
In file included from arch/arm/mach-omap2/board-omap3evm.c:27:
include/linux/i2c/twl4030.h:342:1: warning: this is the location of the previous definition

Signed-off-by: Sanjeev Premi <premi@ti.com>
---
 include/linux/i2c/twl4030.h |    8 --------
 1 files changed, 0 insertions(+), 8 deletions(-)

diff --git a/include/linux/i2c/twl4030.h b/include/linux/i2c/twl4030.h
index 87accda..21e65bf 100644
--- a/include/linux/i2c/twl4030.h
+++ b/include/linux/i2c/twl4030.h
@@ -333,14 +333,6 @@ struct twl4030_madc_platform_data {
 	int		irq_line;
 };
 
-/* Boards have uniqe mappings of {col, row} --> keycode.
- * Column and row are 4 bits, but range only from 0..7;
- * a PERSISTENT_KEY is "always on" and never reported.
- */
-#define KEY_PERSISTENT		0x00800000
-#define KEY(col, row, keycode)	(((col) << 28) | ((row) << 24) | (keycode))
-#define PERSISTENT_KEY(c, r)	KEY(c, r, KEY_PERSISTENT)
-
 struct twl4030_keypad_data {
 	unsigned rows;
 	unsigned cols;
-- 
1.6.2.2


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

* Re: [PATCH] Remove duplicate definitions
  2009-06-16 11:14 [PATCH] Remove duplicate definitions Sanjeev Premi
@ 2009-06-17  8:52 ` Tony Lindgren
  2009-06-17  9:34   ` Tony Lindgren
  0 siblings, 1 reply; 3+ messages in thread
From: Tony Lindgren @ 2009-06-17  8:52 UTC (permalink / raw)
  To: Sanjeev Premi; +Cc: linux-omap

* Sanjeev Premi <premi@ti.com> [090616 04:15]:
> Fixes the duplicate definitions of KEY and PERSISTENT_KEY
> leading to these compile-time warnings:
> 
> In file included from arch/arm/mach-omap2/board-omap3evm.c:39:
> arch/arm/plat-omap/include/mach/keypad.h:38:1: warning: "KEY" redefined
> In file included from arch/arm/mach-omap2/board-omap3evm.c:27:
> include/linux/i2c/twl4030.h:341:1: warning: this is the location of the previous definition
> In file included from arch/arm/mach-omap2/board-omap3evm.c:39:
> arch/arm/plat-omap/include/mach/keypad.h:39:1: warning: "PERSISTENT_KEY" redefined
> In file included from arch/arm/mach-omap2/board-omap3evm.c:27:
> include/linux/i2c/twl4030.h:342:1: warning: this is the location of the previous definition

Hmm, I think we should rather remove these from keypad.h. Will queue
a patch into omap-fixes for that.

Tony
 
> Signed-off-by: Sanjeev Premi <premi@ti.com>
> ---
>  include/linux/i2c/twl4030.h |    8 --------
>  1 files changed, 0 insertions(+), 8 deletions(-)
> 
> diff --git a/include/linux/i2c/twl4030.h b/include/linux/i2c/twl4030.h
> index 87accda..21e65bf 100644
> --- a/include/linux/i2c/twl4030.h
> +++ b/include/linux/i2c/twl4030.h
> @@ -333,14 +333,6 @@ struct twl4030_madc_platform_data {
>  	int		irq_line;
>  };
>  
> -/* Boards have uniqe mappings of {col, row} --> keycode.
> - * Column and row are 4 bits, but range only from 0..7;
> - * a PERSISTENT_KEY is "always on" and never reported.
> - */
> -#define KEY_PERSISTENT		0x00800000
> -#define KEY(col, row, keycode)	(((col) << 28) | ((row) << 24) | (keycode))
> -#define PERSISTENT_KEY(c, r)	KEY(c, r, KEY_PERSISTENT)
> -
>  struct twl4030_keypad_data {
>  	unsigned rows;
>  	unsigned cols;
> -- 
> 1.6.2.2
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] Remove duplicate definitions
  2009-06-17  8:52 ` Tony Lindgren
@ 2009-06-17  9:34   ` Tony Lindgren
  0 siblings, 0 replies; 3+ messages in thread
From: Tony Lindgren @ 2009-06-17  9:34 UTC (permalink / raw)
  To: Sanjeev Premi; +Cc: linux-omap

* Tony Lindgren <tony@atomide.com> [090617 01:52]:
> * Sanjeev Premi <premi@ti.com> [090616 04:15]:
> > Fixes the duplicate definitions of KEY and PERSISTENT_KEY
> > leading to these compile-time warnings:
> > 
> > In file included from arch/arm/mach-omap2/board-omap3evm.c:39:
> > arch/arm/plat-omap/include/mach/keypad.h:38:1: warning: "KEY" redefined
> > In file included from arch/arm/mach-omap2/board-omap3evm.c:27:
> > include/linux/i2c/twl4030.h:341:1: warning: this is the location of the previous definition
> > In file included from arch/arm/mach-omap2/board-omap3evm.c:39:
> > arch/arm/plat-omap/include/mach/keypad.h:39:1: warning: "PERSISTENT_KEY" redefined
> > In file included from arch/arm/mach-omap2/board-omap3evm.c:27:
> > include/linux/i2c/twl4030.h:342:1: warning: this is the location of the previous definition
> 
> Hmm, I think we should rather remove these from keypad.h. Will queue
> a patch into omap-fixes for that.

Sorry, you're right, looks like we have still non-standard headers
for I2C. Will reset those in linux-omap tree.
 
> Tony
>  
> > Signed-off-by: Sanjeev Premi <premi@ti.com>
> > ---
> >  include/linux/i2c/twl4030.h |    8 --------
> >  1 files changed, 0 insertions(+), 8 deletions(-)
> > 
> > diff --git a/include/linux/i2c/twl4030.h b/include/linux/i2c/twl4030.h
> > index 87accda..21e65bf 100644
> > --- a/include/linux/i2c/twl4030.h
> > +++ b/include/linux/i2c/twl4030.h
> > @@ -333,14 +333,6 @@ struct twl4030_madc_platform_data {
> >  	int		irq_line;
> >  };
> >  
> > -/* Boards have uniqe mappings of {col, row} --> keycode.
> > - * Column and row are 4 bits, but range only from 0..7;
> > - * a PERSISTENT_KEY is "always on" and never reported.
> > - */
> > -#define KEY_PERSISTENT		0x00800000
> > -#define KEY(col, row, keycode)	(((col) << 28) | ((row) << 24) | (keycode))
> > -#define PERSISTENT_KEY(c, r)	KEY(c, r, KEY_PERSISTENT)
> > -
> >  struct twl4030_keypad_data {
> >  	unsigned rows;
> >  	unsigned cols;
> > -- 
> > 1.6.2.2
> > 
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2009-06-17  9:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-16 11:14 [PATCH] Remove duplicate definitions Sanjeev Premi
2009-06-17  8:52 ` Tony Lindgren
2009-06-17  9:34   ` Tony Lindgren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox