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 59247CDB474 for ; Tue, 17 Oct 2023 07:35:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234640AbjJQHfH (ORCPT ); Tue, 17 Oct 2023 03:35:07 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59086 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233857AbjJQHfF (ORCPT ); Tue, 17 Oct 2023 03:35:05 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8F94595 for ; Tue, 17 Oct 2023 00:35:03 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9ED4EC433C7; Tue, 17 Oct 2023 07:35:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1697528103; bh=uFcJLd6HAdVliYI8o7pEF7cyGfZ+4ll1EYpzGw8A6s8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=AV0UvdJHc8R/P8WUH8SZztzDgI6WSYhJUxuEjlWRV+benN2o6GGhuy5GXDDMQ8S/p eMYbfX01rSTa3CM2utRcaoJw2uu9Ldnx0WueGLQm/S/gsb42IOvf2lC1xYzMO4Dm9L UfudN0EhAWzVhxpFq9/xqjLXKFUhXe6RQO7L6l/0= Date: Tue, 17 Oct 2023 09:17:20 +0200 From: Greg Kroah-Hartman To: Calvince Otieno Cc: gustavo@embeddedor.com, outreachy@lists.linux.dev, Bagas Sanjaya , Deepak R Varma , Simon Horman , linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org Subject: Re: [PATCH] staging: wlan-ng: coding style corrections Message-ID: <2023101723-molar-defective-7193@gregkh> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Oct 17, 2023 at 10:07:28AM +0300, Calvince Otieno wrote: > This patch brings the codebase in compliance with the Linux kernel coding > style guidelines, as outlined in the document at > https://www.kernel.org/doc/html/latest/process/coding-style.html. > > Changes Made: > - Adjusted line lengths to a maximum of 80 characters > > The guide states that the preferred limit on the length of a single > line is 80 columns. Statements longer than 80 columns should be broken > into sensible chunks, unless exceeding 80 columns significantly increases > readability and does not hide information. 100 columns is ok to use now, so this patch should not be needed. sorry, greg k-h