Re: [PATCH] usb/core/quirks: Add Huawei ME906S to wakeup quirk.

From: Alan Stern

Date: Wed Oct 15 2025 - 10:21:43 EST


On Tue, Oct 14, 2025 at 05:30:05PM +0200, Werner Sembach wrote:
> From: Tim Guttzeit <t.guttzeit@xxxxxxxxxxxxxxxxxxx>
>
> The list of Huawei LTE modules needing the quirk fixing spurious wakeups
> was missing the IDs of the Huawei ME906S module, therefore suspend did not
> work.
>
> Signed-off-by: Tim Guttzeit <t.guttzeit@xxxxxxxxxxxxxxxxxxx>
> Signed-off-by: Werner Sembach <wse@xxxxxxxxxxxxxxxxxxx>
> ---
> drivers/usb/core/quirks.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/usb/core/quirks.c b/drivers/usb/core/quirks.c
> index f5bc538753301..39fbbc31e9a41 100644
> --- a/drivers/usb/core/quirks.c
> +++ b/drivers/usb/core/quirks.c
> @@ -469,6 +469,8 @@ static const struct usb_device_id usb_quirk_list[] = {
> USB_QUIRK_DISCONNECT_SUSPEND },
> { USB_DEVICE(0x12d1, 0x15c3), .driver_info =
> USB_QUIRK_DISCONNECT_SUSPEND },
> + { USB_DEVICE(0x12d1, 0x15c1), .driver_info =
> + USB_QUIRK_DISCONNECT_SUSPEND },

Please pay attention to the comment at the start of the array's
definition. Entries should be sorted by vendor ID and product ID.

Alan Stern