[patch 5/8] input: export input_dev_class so that input drivers can use it.

From: Greg KH
Date: Wed Oct 12 2005 - 21:14:12 EST


From: Greg Kroah-Hartman <gregkh@xxxxxxx>

Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxx>

---
drivers/input/input.c | 3 ++-
include/linux/input.h | 1 +
2 files changed, 3 insertions(+), 1 deletion(-)

--- gregkh-2.6.orig/drivers/input/input.c
+++ gregkh-2.6/drivers/input/input.c
@@ -40,6 +40,7 @@ EXPORT_SYMBOL(input_accept_process);
EXPORT_SYMBOL(input_flush_device);
EXPORT_SYMBOL(input_event);
EXPORT_SYMBOL(input_class);
+EXPORT_SYMBOL_GPL(input_dev_class);

#define INPUT_DEVICES 256

@@ -724,7 +725,7 @@ static void input_dev_release(struct cla
module_put(THIS_MODULE);
}

-static struct class input_dev_class = {
+struct class input_dev_class = {
.name = "input_dev",
.release = input_dev_release,
.class_dev_attrs = input_dev_attrs,
--- gregkh-2.6.orig/include/linux/input.h
+++ gregkh-2.6/include/linux/input.h
@@ -1075,6 +1075,7 @@ static inline void input_set_abs_params(
}

extern struct class *input_class;
+extern struct class input_dev_class;

#endif
#endif

--
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/