diff options
author | Matthew Garrett <mjg59@coreos.com> | 2015-04-08 18:58:09 -0700 |
---|---|---|
committer | David Herrmann <dh.herrmann@gmail.com> | 2015-04-11 12:22:17 +0200 |
commit | 64713f92528e8443b7ff2ce3ec0394920a751fb1 (patch) | |
tree | e980d9096672d54e55771cce842a6c4532311753 /rules | |
parent | 3dd26f3e3aa7fa0696d304e14551362133dd281f (diff) | |
download | systemd-64713f92528e8443b7ff2ce3ec0394920a751fb1.tar.gz |
rules: fix tests for removable state
We only care about whether our direct parent is removable, not whether any
further points up the tree are - the kernel will take care of policy for
those itself. This enables autosuspend on devices where the root hub reports
that its removable state is unknown.
Diffstat (limited to 'rules')
-rw-r--r-- | rules/42-usb-hid-pm.rules | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rules/42-usb-hid-pm.rules b/rules/42-usb-hid-pm.rules index 4c300da8c8..3721219098 100644 --- a/rules/42-usb-hid-pm.rules +++ b/rules/42-usb-hid-pm.rules @@ -28,9 +28,9 @@ ACTION=="add", SUBSYSTEM=="usb", ATTR{idVendor}=="14dd", ATTR{idProduct}=="0002" # USB HID devices that are internal to the machine should also be safe to autosuspend -ACTION=="add", SUBSYSTEM=="usb", SUBSYSTEMS=="usb", ATTRS{removable}=="removable", GOTO="usb_hid_pm_end" -ACTION=="add", SUBSYSTEM=="usb", SUBSYSTEMS=="usb", ATTRS{removable}=="unknown", GOTO="usb_hid_pm_end" +ACTION=="add", SUBSYSTEM=="usb", SUBSYSTEMS=="usb", ATTR{../removable}=="removable", GOTO="usb_hid_pm_end" +ACTION=="add", SUBSYSTEM=="usb", SUBSYSTEMS=="usb", ATTR{../removable}=="unknown", GOTO="usb_hid_pm_end" -ACTION=="add", SUBSYSTEM=="usb", ATTR{bInterfaceClass}=="03", ATTRS{removable}=="fixed", TEST=="../power/control", ATTR{../power/control}="auto" +ACTION=="add", SUBSYSTEM=="usb", ATTR{bInterfaceClass}=="03", ATTR{../removable}=="fixed", TEST=="../power/control", ATTR{../power/control}="auto" LABEL="usb_hid_pm_end" |