diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-06-29 01:49:21 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-06-29 01:49:21 +0200 |
commit | ac2dcbb2155fa421b826cfd45ec98d4237b1c9fe (patch) | |
tree | 46daf1160b77989e0f169638585c578efa44877a | |
parent | 1c9a2c1047a6387e0f22801c72760d0d282960d5 (diff) |
logind: udev no longer ignores subsystem matches on monitors when used in conjunction with tags
-rw-r--r-- | src/logind.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/logind.c b/src/logind.c index fd17d80541..94cb6cd80c 100644 --- a/src/logind.c +++ b/src/logind.c @@ -264,11 +264,6 @@ int manager_process_seat_device(Manager *m, struct udev_device *d) { assert(m); - /* FIXME: drop this check as soon as libudev's enum support - * honours tags and subsystem matches at the same time */ - if (!streq_ptr(udev_device_get_subsystem(d), "graphics")) - return 0; - if (streq_ptr(udev_device_get_action(d), "remove")) { /* FIXME: use syspath instead of sysname here, as soon as fb driver is fixed */ |