All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] gpio_keys: fix struct device declared inside parameter list
@ 2012-01-12  9:11 Heiko Stübner
  2012-01-31 21:27 ` Heiko Stübner
  0 siblings, 1 reply; 3+ messages in thread
From: Heiko Stübner @ 2012-01-12  9:11 UTC (permalink / raw)
  To: Dmitry Torokhov, linux-input

A struct device parameter is used in the enable and disable callbacks to
distinguish between different gpio_keys devices.

Platforms that don't use these callbacks may not include struct device
at all, as seen on arch/arm/mach-s3c2410/mach-n30.c

Signed-off-by: Heiko Stuebner <heiko@sntech.de>
---
 include/linux/gpio_keys.h |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/include/linux/gpio_keys.h b/include/linux/gpio_keys.h
index b5ca4b2..004ff33 100644
--- a/include/linux/gpio_keys.h
+++ b/include/linux/gpio_keys.h
@@ -1,6 +1,8 @@
 #ifndef _GPIO_KEYS_H
 #define _GPIO_KEYS_H
 
+struct device;
+
 struct gpio_keys_button {
 	/* Configuration parameters */
 	unsigned int code;	/* input event code (KEY_*, SW_*) */
-- 
1.7.5.4


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

end of thread, other threads:[~2012-02-03  8:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-12  9:11 [PATCH] gpio_keys: fix struct device declared inside parameter list Heiko Stübner
2012-01-31 21:27 ` Heiko Stübner
2012-02-03  8:37   ` Dmitry Torokhov

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.