From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id F35061F63FF; Fri, 10 Oct 2025 13:17:26 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1760102247; cv=none; b=uuNuToZnQ1XqlD4PcwdgvaMkmRLtpRg5zJT6KY6LR/wycXqd3J6c4G7LuRhG1qs9fZjUIRpL/H8FP6hfRyAaiCDYRXtDks9TyEBhRZPw0ZUqc1ONkSM/JewLDpRCTXDt7BNbIcHJDLTSr3M1E2pNus/foKDZzi+H0zj8bZ7e0EI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1760102247; c=relaxed/simple; bh=I27ZozqIEns2GV7voCE5dyHncevcR1SUTDQqFT3NSYg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=SsZThzqUlGhYYxwGWQaNjrphNq47oBzg8C6RdHwoj4pOrJm3aF2TCPB23q7IT1tgo2mC4rkeVZhdZUHqKD5aVfMABmDfQgOZvBriOMAiDBTKVvVn3RtEwVExygw5+an/cRyWvxn9cUP6SdRJnx2owRAmYQ+L+rMLaPMNY5x9lqE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=c6Bg39bt; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="c6Bg39bt" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7AFA0C4CEF1; Fri, 10 Oct 2025 13:17:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1760102246; bh=I27ZozqIEns2GV7voCE5dyHncevcR1SUTDQqFT3NSYg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=c6Bg39btTSkCvXKxp+nOqPEnRueyAoHfjcFxlky1iBOALrHvbi4O+KDGxrwF+ng13 0Le61Ba9tCrDZTAOPEfSpjbYsnHXmJLrMe0mbJEer7B3GuBs7l7j2SAzAx3vWfui0B V9IrqbOrIg7IBgqwFikjw3nbWQIaRGw0yFsPyuJw= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Bitterblue Smith , Ping-Ke Shih Subject: [PATCH 6.17 05/26] wifi: rtl8xxxu: Dont claim USB ID 07b8:8188 Date: Fri, 10 Oct 2025 15:16:00 +0200 Message-ID: <20251010131331.405443685@linuxfoundation.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20251010131331.204964167@linuxfoundation.org> References: <20251010131331.204964167@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.17-stable review patch. If anyone has any objections, please let me know. ------------------ From: Bitterblue Smith commit ec0b44736b1d22b763ee94f1aee856f9e793f3fe upstream. This ID appears to be RTL8188SU, not RTL8188CU. This is the wrong driver for RTL8188SU. The r8712u driver from staging used to handle this ID. Closes: https://lore.kernel.org/linux-wireless/ee0acfef-a753-4f90-87df-15f8eaa9c3a8@gmx.de/ Cc: stable@vger.kernel.org Signed-off-by: Bitterblue Smith Reviewed-by: Ping-Ke Shih Signed-off-by: Ping-Ke Shih Link: https://patch.msgid.link/f147b2ab-4505-435a-aa32-62964e4f1f1e@gmail.com Signed-off-by: Greg Kroah-Hartman --- drivers/net/wireless/realtek/rtl8xxxu/core.c | 2 -- 1 file changed, 2 deletions(-) --- a/drivers/net/wireless/realtek/rtl8xxxu/core.c +++ b/drivers/net/wireless/realtek/rtl8xxxu/core.c @@ -8172,8 +8172,6 @@ static const struct usb_device_id dev_ta .driver_info = (unsigned long)&rtl8192cu_fops}, {USB_DEVICE_AND_INTERFACE_INFO(0x06f8, 0xe033, 0xff, 0xff, 0xff), .driver_info = (unsigned long)&rtl8192cu_fops}, -{USB_DEVICE_AND_INTERFACE_INFO(0x07b8, 0x8188, 0xff, 0xff, 0xff), - .driver_info = (unsigned long)&rtl8192cu_fops}, {USB_DEVICE_AND_INTERFACE_INFO(0x07b8, 0x8189, 0xff, 0xff, 0xff), .driver_info = (unsigned long)&rtl8192cu_fops}, {USB_DEVICE_AND_INTERFACE_INFO(0x0846, 0x9041, 0xff, 0xff, 0xff),