From patchwork Thu Jul 20 06:04:46 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: 13319795 X-Patchwork-Delegate: kvalo@adurom.com 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 110D0EB64DA for ; Thu, 20 Jul 2023 06:04:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229768AbjGTGEx (ORCPT ); Thu, 20 Jul 2023 02:04:53 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54338 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229671AbjGTGEw (ORCPT ); Thu, 20 Jul 2023 02:04:52 -0400 Received: from mail.208.org (unknown [183.242.55.162]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B865C1724 for ; Wed, 19 Jul 2023 23:04:50 -0700 (PDT) Received: from mail.208.org (email.208.org [127.0.0.1]) by mail.208.org (Postfix) with ESMTP id 4R62G72tv4zBRDsD for ; Thu, 20 Jul 2023 14:04:47 +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=1689833087; x=1692425088; bh=wN9MJCeTp0uLboPfJ3UF4H7+r1d VVYUCJ5o5m7snluc=; b=w7GD9fvycDKvEE/BVr0h4oL0VCt1iV+TZbBBasw2Adz N37ZxVPt7RLvnSGjMj0ikUYDIv3Y5AAW+i717i7oJyR0xIUj5eqspO8emBISdmdQ uAC5c4bOIhRlYshDTa+K6RQDf+la8Jmaj9IOT4H4qXWb7lHUFQ8kAvpdsQFKggg2 3+dJqLk/R9wwy/5r9kneGfFxieQ6jmrw4+WiMhJe/iZrrl6kYpkRpFvjlpE3VXxX gyrk9gIrsqSt3aen0WIPPvbwAN3ULdsn+Xxs38C+gDyg03iYpA0PMXMSy4qNhXMi kst1yeCtPl1FFojbCPe+igwFO/J6lWci7ZVAbfBSZ7g== 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 WiNOOa34z5fW for ; Thu, 20 Jul 2023 14:04:47 +0800 (CST) Received: from localhost (email.208.org [127.0.0.1]) by mail.208.org (Postfix) with ESMTPSA id 4R62G66P2czBR1P6; Thu, 20 Jul 2023 14:04:46 +0800 (CST) MIME-Version: 1.0 Date: Thu, 20 Jul 2023 14:04:46 +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] wifi: rtlwifi: "foo * bar" should be "foo *bar" In-Reply-To: References: User-Agent: Roundcube Webmail Message-ID: 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/rtl8192cu/trx.c:416: ERROR: "foo * bar" should be "foo *bar" Signed-off-by: Yu Han --- drivers/net/wireless/realtek/rtlwifi/rtl8192cu/trx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) } diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/trx.c b/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/trx.c index b70767e..c86102b 100644 --- a/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/trx.c +++ b/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/trx.c @@ -413,7 +413,7 @@ static void _rtl_rx_process(struct ieee80211_hw *hw, struct sk_buff *skb) ieee80211_rx(hw, skb); } -void rtl8192cu_rx_hdl(struct ieee80211_hw *hw, struct sk_buff * skb) +void rtl8192cu_rx_hdl(struct ieee80211_hw *hw, struct sk_buff *skb) { _rtl_rx_process(hw, skb);