diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-22 23:28:57 -0800 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2012-11-24 00:03:39 -0800 |
commit | 58b45d166f4c16d21f6aa059c6c5d87a9eeb1ff5 (patch) | |
tree | 63bb36cd68ba9438de78b7201c9c0122b14e2420 | |
parent | 5e7fe820fa1fdf1988e71c0c1070b5d9bdd4fcf1 (diff) | |
download | talos-op-linux-58b45d166f4c16d21f6aa059c6c5d87a9eeb1ff5.tar.gz talos-op-linux-58b45d166f4c16d21f6aa059c6c5d87a9eeb1ff5.zip |
Input: serio - remove CONFIG_HOTPLUG ifdefs
Remove conditional code based on CONFIG_HOTPLUG being false. It's
always on now in preparation of it going away as an option.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r-- | drivers/input/serio/serio.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/drivers/input/serio/serio.c b/drivers/input/serio/serio.c index d0f7533dbf88..25fc5971f426 100644 --- a/drivers/input/serio/serio.c +++ b/drivers/input/serio/serio.c @@ -891,8 +891,6 @@ static int serio_bus_match(struct device *dev, struct device_driver *drv) return serio_match_port(serio_drv->id_table, serio); } -#ifdef CONFIG_HOTPLUG - #define SERIO_ADD_UEVENT_VAR(fmt, val...) \ do { \ int err = add_uevent_var(env, fmt, val); \ @@ -920,15 +918,6 @@ static int serio_uevent(struct device *dev, struct kobj_uevent_env *env) } #undef SERIO_ADD_UEVENT_VAR -#else - -static int serio_uevent(struct device *dev, struct kobj_uevent_env *env) -{ - return -ENODEV; -} - -#endif /* CONFIG_HOTPLUG */ - #ifdef CONFIG_PM static int serio_suspend(struct device *dev) { |