diff options
| author | Daniel Brát <danek.brat@gmail.com> | 2026-04-02 20:24:33 +0300 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2026-04-07 14:47:23 +0300 |
| commit | 609865ab3d5d803556f628e221ecd3d06aed9f30 (patch) | |
| tree | 64786c7e21fd4b6e4f2022e626982e9bca40691f | |
| parent | a4e99587102a83ee911c670752fbca694c7e557f (diff) | |
| download | linux-609865ab3d5d803556f628e221ecd3d06aed9f30.tar.xz | |
usb: storage: Expand range of matched versions for VL817 quirks entry
Expands range of matched bcdDevice values for the VL817 quirk entry.
This is based on experience with Axagon EE35-GTR rev1 3.5" HDD
enclosure, which reports its bcdDevice as 0x0843, but presumably other
vendors using this IC in their products may set it to any other value.
Signed-off-by: Daniel Brát <danek.brat@gmail.com>
Cc: stable <stable@kernel.org>
Link: https://patch.msgid.link/20260402172433.5227-1-danek.brat@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/usb/storage/unusual_devs.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/usb/storage/unusual_devs.h b/drivers/usb/storage/unusual_devs.h index 47f50d7a385c..255968f9ca42 100644 --- a/drivers/usb/storage/unusual_devs.h +++ b/drivers/usb/storage/unusual_devs.h @@ -2350,10 +2350,11 @@ UNUSUAL_DEV( 0x2027, 0xa001, 0x0000, 0x9999, US_FL_SCM_MULT_TARG ), /* - * Reported by DocMAX <mail@vacharakis.de> - * and Thomas Weißschuh <linux@weissschuh.net> + * Reported by DocMAX <mail@vacharakis.de>, + * Thomas Weißschuh <linux@weissschuh.net> + * and Daniel Brát <danek.brat@gmail.com> */ -UNUSUAL_DEV( 0x2109, 0x0715, 0x9999, 0x9999, +UNUSUAL_DEV( 0x2109, 0x0715, 0x0000, 0x9999, "VIA Labs, Inc.", "VL817 SATA Bridge", USB_SC_DEVICE, USB_PR_DEVICE, NULL, |
