diff options
author | Dan Williams <dcbw@redhat.com> | 2015-01-26 17:02:13 -0600 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2015-01-26 17:05:39 -0600 |
commit | 086a10ede07bc37c3603d70d7d5b4880e75b7df7 (patch) | |
tree | 7caf31fc475b907151292ee1cb8c4d57aeadb0c5 | |
parent | f9489a06bed0c410d9bba694af6d681a143be09d (diff) |
blacklist: ignore PalmOS devices driven by 'visor'
MM probing appears to make 'visor' module die; and anyway
most of the devices driven by 'visor' are not phones, and
of the 3 that are phones they are so old (2002 - 2005 era)
that nobody is likely using them for dialup anymore.
http://www.spinics.net/lists/linux-usb/msg120483.html
-rw-r--r-- | src/77-mm-usb-device-blacklist.rules | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/77-mm-usb-device-blacklist.rules b/src/77-mm-usb-device-blacklist.rules index e518ed9c..4a74714a 100644 --- a/src/77-mm-usb-device-blacklist.rules +++ b/src/77-mm-usb-device-blacklist.rules @@ -131,4 +131,11 @@ ATTRS{idVendor}=="8087", ATTRS{idProduct}=="0716", ENV{ID_MM_DEVICE_IGNORE}="1" # GW Instek AFG-2225 arbitrary function generator ATTRS{idVendor}=="2184", ATTRS{idProduct}=="001c", ENV{ID_MM_DEVICE_IGNORE}="1" +# PalmOS devices - even though some are phones, they are so old they most +# likely are not being used anymore +DRIVERS=="visor", ENV{ID_MM_DEVICE_IGNORE}="1" + +# Palmconnect +ATTRS{idVendor}=="0830", ATTRS{idProduct}=="0080", ENV{ID_MM_DEVICE_IGNORE}="1" + LABEL="mm_usb_device_blacklist_end" |