From mboxrd@z Thu Jan 1 00:00:00 1970 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 EEC10C433F5 for ; Wed, 16 Mar 2022 14:10:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S243607AbiCPOLx (ORCPT ); Wed, 16 Mar 2022 10:11:53 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53268 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236990AbiCPOLs (ORCPT ); Wed, 16 Mar 2022 10:11:48 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2B7F666F9C for ; Wed, 16 Mar 2022 07:10:34 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id D1E56B81B41 for ; Wed, 16 Mar 2022 14:10:32 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B7EA8C340EC; Wed, 16 Mar 2022 14:10:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1647439831; bh=4z2I55pzyavFTDWLYTHKcSuy83CB3G7cE/uAVyRTL3w=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Kxcj68qKuLCMtT5jZYNdUY3CNI+L1u5I5JrvYc43CEEXJRy20ysZ9tpxO+1cYXeOY i2SbPSxGveYl4eUg29j4He8UUCMAgrllZgGnTzCy6SNHfBiw6zRPDd1QM+ekp0fsE/ vi8Jxafqqrcfjz1KzCqBGl9Px8Dn5Rn1wEEzUQ3A= Date: Wed, 16 Mar 2022 15:10:12 +0100 From: Greg Kroah-Hartman To: Martin Kaiser Cc: Larry Finger , Phillip Potter , Michael Straube , linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 0/6] staging: r8188eu: some rx cleanups Message-ID: References: <20220315205041.2714168-1-martin@kaiser.cx> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220315205041.2714168-1-martin@kaiser.cx> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Mar 15, 2022 at 09:50:35PM +0100, Martin Kaiser wrote: > Here's another set with simple cleanups in the code for receiving frames. > > v2 fixes a build error on 64-bit systems in the last patch. > > Martin Kaiser (6): > staging: r8188eu: remove unnecessary initializations > staging: r8188eu: remove three unused receive defines > staging: r8188eu: remove unused function prototype > staging: r8188eu: make rtl8188e_process_phy_info static > staging: r8188eu: remove some unused local ieee80211 macros > staging: r8188eu: remove local BIT macro > > drivers/staging/r8188eu/hal/rtl8188e_rxdesc.c | 6 +--- > .../staging/r8188eu/include/rtl8188e_recv.h | 6 ---- > .../staging/r8188eu/include/rtw_mlme_ext.h | 2 +- > drivers/staging/r8188eu/include/wifi.h | 34 +------------------ > 4 files changed, 3 insertions(+), 45 deletions(-) > > -- > 2.30.2 > > I took the first 5 patches here, thanks. greg k-h