[PATCH] INPUT: export input_dev_class so that input drivers can use it.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
diff --git a/drivers/input/input.c b/drivers/input/input.c
index 03c2ca4..b0ede4cc 100644
--- a/drivers/input/input.c
+++ b/drivers/input/input.c
@@ -40,6 +40,7 @@
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 @@
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,
diff --git a/include/linux/input.h b/include/linux/input.h
index 3defa29..5de8441 100644
--- a/include/linux/input.h
+++ b/include/linux/input.h
@@ -1075,6 +1075,7 @@
}
extern struct class *input_class;
+extern struct class input_dev_class;
#endif
#endif