From patchwork Wed Jul 19 09:54:33 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: hanyu001@208suo.com X-Patchwork-Id: 704929 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C5018EB64DA for ; Wed, 19 Jul 2023 09:57:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229592AbjGSJ5X (ORCPT ); Wed, 19 Jul 2023 05:57:23 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55580 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229530AbjGSJ5W (ORCPT ); Wed, 19 Jul 2023 05:57:22 -0400 Received: from mail.208.org (unknown [183.242.55.162]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id CCFD1106 for ; Wed, 19 Jul 2023 02:54:38 -0700 (PDT) Received: from mail.208.org (email.208.org [127.0.0.1]) by mail.208.org (Postfix) with ESMTP id 4R5WPj56JYzBRDrT for ; Wed, 19 Jul 2023 17:54:33 +0800 (CST) Authentication-Results: mail.208.org (amavisd-new); dkim=pass reason="pass (just generated, assumed good)" header.d=208.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=208.org; h= content-transfer-encoding:content-type:message-id:user-agent :references:in-reply-to:subject:to:from:date:mime-version; s= dkim; t=1689760473; x=1692352474; bh=iZ7MHDXMAeTe21V130fRphXLFoc oLkF9T3oPe8TXaRU=; b=A7FrCShP8IWzWnXTNctVB5FUbpvV3i7boTOXyu0+Rrf 6EjkxZQwKnlCi3OwEOofgQunTbAQcEWuFIrKqfmmqcKw4F4qSa5MiiIx+QAeYRZZ r8L8qwJcFmagKCzdJ9O3hcRDreEJ5ohA679Z4j+wMYUceng2+qF6cFPjkFPrep55 XhF1lZUkTfbCkA4ixJCypzCpfRETwUamm1mcTg1hWybaLEyvvLx1C220uVK+21FI U09KhGw4bhD6pothBSubf3GWomiQciRggHESM3B+QD7BsNKKrPCl3/5iMB+NxC4d E6u7vuyaFLzQnuPQBF+It3DFBu4VPfYmKexUgA6H8Wg== X-Virus-Scanned: amavisd-new at mail.208.org Received: from mail.208.org ([127.0.0.1]) by mail.208.org (mail.208.org [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id SZroP2Sfvu2x for ; Wed, 19 Jul 2023 17:54:33 +0800 (CST) Received: from localhost (email.208.org [127.0.0.1]) by mail.208.org (Postfix) with ESMTPSA id 4R5WPj3JmgzBRDrF; Wed, 19 Jul 2023 17:54:33 +0800 (CST) MIME-Version: 1.0 Date: Wed, 19 Jul 2023 17:54:33 +0800 From: hanyu001@208suo.com To: pkshih@realtek.com, kvalo@kernel.org Cc: linux-wireless@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] rtlwifi: rtl8192de: phy: "foo * bar" should be "foo *bar" In-Reply-To: References: User-Agent: Roundcube Webmail Message-ID: <8ef50a4e96014949bbfde956edd07108@208suo.com> X-Sender: hanyu001@208suo.com Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org This patch fixes the checkpatch.pl error: ./drivers/net/wireless/realtek/rtlwifi/rtl8192de/phy.c:2434: ERROR: "foo * bar" should be "foo *bar" Signed-off-by: Yu Han --- drivers/net/wireless/realtek/rtlwifi/rtl8192de/phy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) struct rtl_priv *rtlpriv = rtl_priv(hw); diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8192de/phy.c b/drivers/net/wireless/realtek/rtlwifi/rtl8192de/phy.c index d18c092..27b029b 100644 --- a/drivers/net/wireless/realtek/rtlwifi/rtl8192de/phy.c +++ b/drivers/net/wireless/realtek/rtlwifi/rtl8192de/phy.c @@ -2431,7 +2431,7 @@ static bool _rtl92d_is_legal_5g_channel(struct ieee80211_hw *hw, u8 channel) } static void _rtl92d_phy_calc_curvindex(struct ieee80211_hw *hw, - u32 *targetchnl, u32 * curvecount_val, + u32 *targetchnl, u32 *curvecount_val, bool is5g, u32 *curveindex) {