From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from sipsolutions.net (s3.sipsolutions.net [168.119.38.16]) (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 F195F44B68D; Mon, 11 May 2026 17:27:00 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=168.119.38.16 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778520422; cv=none; b=ConFyF57GAOTTUpXexKBNCTRATCkRyN0WcHrSkDdojX44/bg6Yk4rwzI6ajMkuvp9nu+9D89/6J97ApfrrXdx5+eLYQgKfjOxk+jgJKGEF+4cppodz1IGT5oyT8DLKxMu44hpe7xJgTWjQqpZe/9tEWvFwdM49x0DJd+SP4vD7U= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778520422; c=relaxed/simple; bh=kuEApQyEj97ByIMLgegFWF7Mud1PGueeYYdQqSdFRRk=; h=Message-ID:Subject:From:To:Cc:Date:In-Reply-To:References: Content-Type:MIME-Version; b=uWYEbUkBpVKvOc8/1aKF3Kz45a8CG/fApyoZoLVwAwy9Qe2UGg9LUWDGnHEkE3dNVKHNwhB1nEUAjcl9QdIdILwdTJuMH6J9Y/tAY2CKHmWwPngsZHQBFwsmvjO0ZszGhxxQw2ILTbiPZTcq2YVC3gPMjFq71BVc0950ZPlWDN8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=permerror header.from=sipsolutions.net; spf=none smtp.mailfrom=sipsolutions.net; dkim=pass (2048-bit key) header.d=sipsolutions.net header.i=@sipsolutions.net header.b=gbPxxBcV; arc=none smtp.client-ip=168.119.38.16 Authentication-Results: smtp.subspace.kernel.org; dmarc=permerror header.from=sipsolutions.net Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=sipsolutions.net Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=sipsolutions.net header.i=@sipsolutions.net header.b="gbPxxBcV" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sipsolutions.net; s=mail; h=MIME-Version:Content-Transfer-Encoding: Content-Type:References:In-Reply-To:Date:Cc:To:From:Subject:Message-ID:Sender :Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From:Resent-To: Resent-Cc:Resent-Message-ID; bh=TgixBug4UGfU0n8Acc3pU1th1dfSYhb8QObr/Ln36aI=; t=1778520421; x=1779730021; b=gbPxxBcVBDNP1bmmwCsbeK5AJV/pYPBXgqoPSHl8H2BjZHt 43l83SrY4IChTIp3MMkeCvBKy0oOzHiiKiRkfFgk1Qejx8cOIUZIstLHUj/W7VnisDGe1d2AgK3R+ waMPRNZAlVcziUoHCvADw2rphx/qKNEeFFMoG3J1+UHJDFZR2i7B3xAn6LfItBAUEDHOfHnc9R+RU VCdrf0aSeaz8AHlnvmlRHE9DNK2yx9aTql20obrTKn2xx9roTXj7bOp6hIrsVVegbLbEEN4I+EJLn 9z+5QIeTSgue4UKtgd8oMNTH+mf02rVslpHaAXcepKDNXxcraH/Z9x6ec6n7ANEQ==; Received: by sipsolutions.net with esmtpsa (TLS1.3:ECDHE_X25519__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim 4.98.2) (envelope-from ) id 1wMUPC-0000000FWNX-0uep; Mon, 11 May 2026 19:26:58 +0200 Message-ID: <6d553cffcb0ae84e141006ae1430f6f37909ad2b.camel@sipsolutions.net> Subject: Re: [PATCH rtw-next v2 1/1] wifi: rtw89: usb: Support switching to USB 3 mode From: Johannes Berg To: Devin Wittmayer , linux-wireless@vger.kernel.org Cc: pkshih@realtek.com, rtl8821cerfe2@gmail.com, linux-kernel@vger.kernel.org Date: Mon, 11 May 2026 19:26:57 +0200 In-Reply-To: <20260511160811.17647-2-lucid_duck@justthetip.ca> References: <20260508054421.128938-1-lucid_duck@justthetip.ca> <20260511160811.17647-1-lucid_duck@justthetip.ca> <20260511160811.17647-2-lucid_duck@justthetip.ca> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.58.3 (3.58.3-1.fc43) Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-malware-bazaar: not-scanned On Mon, 2026-05-11 at 09:08 -0700, Devin Wittmayer wrote: >=20 > +static bool rtw89_switch_usb_mode =3D true; > +module_param_named(switch_usb_mode, rtw89_switch_usb_mode, bool, 0644); > +MODULE_PARM_DESC(switch_usb_mode, > + "Set to N to disable switching to USB 3 mode to avoid potential inter= ference in the 2.4 GHz band (default: Y)"); We shouldn't really add new module parameters. johannes