diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/modules/module-udev-detect.c | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/src/modules/module-udev-detect.c b/src/modules/module-udev-detect.c index 7508d9a7..58635a54 100644 --- a/src/modules/module-udev-detect.c +++ b/src/modules/module-udev-detect.c @@ -639,6 +639,11 @@ int pa__init(pa_module *m) {          goto fail;      } +    if (udev_monitor_filter_add_match_subsystem_devtype(u->monitor, "sound", NULL) < 0) { +        pa_log("Failed to subscribe to sound devices."); +        goto fail; +    } +      errno = 0;      if (udev_monitor_enable_receiving(u->monitor) < 0) {          pa_log("Failed to enable monitor: %s", pa_cstrerror(errno));  | 
