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 BB5DD23D2B4; Mon, 2 Feb 2026 08:35:49 +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=1770021349; cv=none; b=hI1MSviXZBoaxUrOV0W5WG3K31ZENVAYhKYPT0ZwjzNmpcgDvSJpD3L5HU3eYl02t6V6C6Y88zmGsRStYRGar+zPppfSL0kAHg8/a/XQQAVGOGTo+Om5MSkqpCMbGidGMRjVtuwZRDwOPMyy86dn8ZWToX54Z7l4mGB6qC/xY3I= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770021349; c=relaxed/simple; bh=AF65IAwvfl9mWuhRA/CfjQR89M2/39x9k7mdyjaHF/I=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=GvdKmPuz2yaRykp76QAqnMLwFzuqSXvoev3/becjlfUdJIWWV5L1xS+kkWMmgiWYd0R6JrbuozH60CPz/tkNxZW6qWgnSSBZZbaYpEwg7nOdz9Q0yZdhPfcc/FH8vF5xq7UV6u/gparuSxGMCrdLyH6/HN8isiz3U3hwh8PTl/M= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=qgp50vZj; 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="qgp50vZj" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 10904C116C6; Mon, 2 Feb 2026 08:35:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1770021349; bh=AF65IAwvfl9mWuhRA/CfjQR89M2/39x9k7mdyjaHF/I=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=qgp50vZjfwR9ZPFcdPBE5DR+0BwBvqx3r/uqHHlcr3dGixC1OWdi/bEZc7YqCD493 d4I5JR4dwzsmddZotMOmeFHw6T0tGC8RN3Hb4+2AdbHr5TmIgpKV9yoHMUPrPTlRoL FFy8h7Bpz+ddoyvkkKiGHhnnwW95YHUbn06tsxr0= Date: Mon, 2 Feb 2026 09:35:45 +0100 From: Greg Kroah-Hartman To: Luka Gejak Cc: Dan Carpenter , linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org Subject: Re: [PATCH v1 5/5] staging: rtl8723bs: fix LONG_LINE warnings across C files Message-ID: <2026020224-casket-trailing-8a3c@gregkh> References: <20260202070752.3391-1-lukagejak5@gmail.com> <20260202070752.3391-6-lukagejak5@gmail.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260202070752.3391-6-lukagejak5@gmail.com> On Mon, Feb 02, 2026 at 08:07:52AM +0100, Luka Gejak wrote: > Refactor lines exceeding 100 characters to comply with kernel coding > style. All changes preserve original logic and behavior. > > Techniques used: > - Move trailing comments to separate lines above code > - Break long function signatures across multiple lines > - Extract complex expressions into named temp variables > - Use scoped blocks for local variable declarations > - Create pointer aliases for deeply nested struct accesses > - Simplify compound conditionals with intermediate booleans > > Files modified: > - core/: rtw_cmd.c, rtw_ieee80211.c, rtw_io.c, rtw_ioctl_set.c, > rtw_mlme.c, rtw_mlme_ext.c, rtw_pwrctrl.c, rtw_recv.c, > rtw_security.c, rtw_wlan_util.c, rtw_xmit.c > - hal/: HalBtc8723b1Ant.c, HalBtc8723b2Ant.c, HalPhyRf.c, > HalPhyRf_8723B.c, hal_com.c, hal_com_phycfg.c, hal_intf.c, > hal_sdio.c, odm.c, odm_DIG.c, odm_HWConfig.c, rtl8723b_cmd.c, > rtl8723b_hal_init.c, rtl8723b_phycfg.c, rtl8723b_rf6052.c, > rtl8723bs_recv.c, rtl8723bs_xmit.c, sdio_halinit.c > - os_dep/: ioctl_cfg80211.c, os_intfs.c, sdio_intf.c, xmit_linux.c > Was this generated by ai? Anyway, it does way too much, my bot will say more... thanks, greg k-h