summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <greg@kroah.com>2003-04-28 09:32:36 -0700
committerGreg Kroah-Hartman <greg@kroah.com>2003-04-28 09:32:36 -0700
commita743096324ba2ce8307153b631b071a14da5a04d (patch)
tree3c46f973735010b6e42197e7d06e48dcab18a358 /include
parent0d120f58d2599d4e262ef216d7a06a32ca76548c (diff)
driver core: fix up the input_class logic due to the class changes.
Diffstat (limited to 'include')
-rw-r--r--include/linux/input.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/input.h b/include/linux/input.h
index da22fe6ccc44..9df2e226a1f2 100644
--- a/include/linux/input.h
+++ b/include/linux/input.h
@@ -908,7 +908,7 @@ void input_event(struct input_dev *dev, unsigned int type, unsigned int code, in
#define input_regs(a,b) do { (a)->regs = (b); } while (0)
#define input_sync(a) do { input_event(a, EV_SYN, SYN_REPORT, 0); (a)->regs = NULL; } while (0)
-extern struct device_class input_devclass;
+extern struct class input_class;
#endif
#endif