alsa-mixer: improve a comment in udev rules

The word "identical" was being used in a weird way that could make the
comment a bit difficult to undertand.
This commit is contained in:
Tanu Kaskinen 2019-03-02 19:46:22 +02:00
parent 0d67e36655
commit 904dd38003

View file

@ -127,9 +127,10 @@ LABEL="pulseaudio_firewire_quirk"
# Focusrite Saffire Pro 10/26 i/o has a quirk to disappear from IEEE 1394 bus when losing connections. # Focusrite Saffire Pro 10/26 i/o has a quirk to disappear from IEEE 1394 bus when losing connections.
# https://bugzilla.kernel.org/show_bug.cgi?id=199365 # https://bugzilla.kernel.org/show_bug.cgi?id=199365
ENV{ID_VENDOR_ID}=="0x00130e", ENV{ID_MODEL_ID}=="0x000003", ENV{PULSE_IGNORE}="1" ENV{ID_VENDOR_ID}=="0x00130e", ENV{ID_MODEL_ID}=="0x000003", ENV{PULSE_IGNORE}="1"
# Both of Saffire Pro 10 i/o and Liquid Saffire 56 has the same ID_MODEL_ID # Both of Saffire Pro 10 i/o and Liquid Saffire 56 have the same ID_MODEL_ID
# (0x000006). Here, use the identical name in configuration ROM to distinguish # (0x000006), but Liquid Saffire 56 doesn't suffer from the problem, so we
# the former. # can't use ID_MODEL_ID to identify the problematic card. ID_MODEL works
# better here.
ENV{ID_VENDOR_ID}=="0x00130e", ENV{ID_MODEL}=="Pro10IO" ENV{PULSE_IGNORE}="1" ENV{ID_VENDOR_ID}=="0x00130e", ENV{ID_MODEL}=="Pro10IO" ENV{PULSE_IGNORE}="1"
LABEL="pulseaudio_end" LABEL="pulseaudio_end"