aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hid
diff options
context:
space:
mode:
authorDavid Herrmann <dh.herrmann@gmail.com>2013-05-26 22:55:02 +0200
committerJiri Kosina <jkosina@suse.cz>2013-06-03 11:07:06 +0200
commit77a7480992844d506a62f866f0824aec429d7658 (patch)
tree9dba0a40ec530b04128905913339df698cc0e94e /drivers/hid
parentHID: wiimote: fix DRM debug-attr to correctly parse input (diff)
downloadlinux-dev-77a7480992844d506a62f866f0824aec429d7658.tar.xz
linux-dev-77a7480992844d506a62f866f0824aec429d7658.zip
HID: wiimote: init EXT/MP during device detection
We normally get EXT hotplug events or poll for MP hotplugging so we don't need to force extension port initialization during device setup. But for gen20 devices, we disable MP polling because MP is always present. However, this prevents MP initialization during device setup and users need to plug another extension to trigger EXT/MP detection. Therefore, we now trigger EXT/MP detection during device setup automatically. This also avoids slightly delayed extension detection and provides sysfs child-devices prior to the "changed"-uevent during device setup. Signed-off-by: David Herrmann <dh.herrmann@gmail.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid')
-rw-r--r--drivers/hid/hid-wiimote-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-wiimote-core.c b/drivers/hid/hid-wiimote-core.c
index 3e696562c944..ea00030defd6 100644
--- a/drivers/hid/hid-wiimote-core.c
+++ b/drivers/hid/hid-wiimote-core.c
@@ -1188,7 +1188,7 @@ static void wiimote_init_worker(struct work_struct *work)
changed = true;
}
- if (!wiimote_init_check(wdata))
+ if (changed || !wiimote_init_check(wdata))
wiimote_init_hotplug(wdata);
if (changed)