From patchwork Thu Oct 10 10:22:44 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Umang Jain X-Patchwork-Id: 13829930 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 3D245CF11CD for ; Thu, 10 Oct 2024 10:38:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:List-Subscribe:List-Help :List-Post:List-Archive:List-Unsubscribe:List-Id:Content-Transfer-Encoding: MIME-Version:Message-ID:Date:Subject:Cc:To:From:Reply-To:Content-Type: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Owner; bh=NiONBUnAnk7tETFoGZIt/1ZOWXChKU+P/ael0jTeJU4=; b=BTGjQTmCuDY3uKb5e20050+405 EdsxFS81+DEjxB9Akw1d3BHOtCPf84gJjkHBZv4EvR6Mi9zXe1hZDjvyXf6o88UDJDMRWDE5ODFdG wfcCZuQGRGB07/s7yqsIoa+V1uHF+ljarEdskYMZaOWW2pexYiW86M1jLg4QNnZlvFP/ji4YWjhJz kXpuIVpa8FpDJImsG3+2W85F07PN4h124rQ4RbSqfZuZRhgg8/p9Ia+/nUJE7Wn1kPXP2yI4zY5GR Wz/0ka2HOD5gEPQMHEJPTJyETA2IRBF9q6wy4f68kirYjCFg/A59VYqpV/kPu2VZv1LEZab3HwAiO Azed97ng==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.98 #2 (Red Hat Linux)) id 1syqYH-0000000CQ2J-1mro; Thu, 10 Oct 2024 10:37:49 +0000 Received: from perceval.ideasonboard.com ([213.167.242.64]) by bombadil.infradead.org with esmtps (Exim 4.98 #2 (Red Hat Linux)) id 1syqKG-0000000CNLL-2Im1; Thu, 10 Oct 2024 10:23:22 +0000 Received: from umang.jain (unknown [IPv6:2405:201:2015:f873:55d7:c02e:b2eb:ee3f]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 6D6BF4D4; Thu, 10 Oct 2024 12:21:36 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1728555698; bh=BTBxOvVuTM6WsUy711z6oEamya74MHIMHKK3ovmyR4U=; h=From:To:Cc:Subject:Date:From; b=ijTxbKUfolk9+TdYDRxKJfqsraL6NR9T44Q50tG6RBqO90JJXEG8oqaVAXlyqE4hH 5N0hbGmXngsuaNBkppBnVrD+obRaIAGNExoJrS8QFgTTgqBVnJIkAcAFWqS41QzxLe 0dD7I3zz6R7F5NcR/MFysQGwemEbROBxSILsI3Tg= From: Umang Jain To: Greg Kroah-Hartman , Broadcom internal kernel review list Cc: linux-rpi-kernel@lists.infradead.org, linux-arm-kernel@lists.infradead.org, linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org, Kieran Bingham , Dan Carpenter , Stefan Wahren , Laurent Pinchart , Umang Jain Subject: [PATCH 0/5] staging: vchiq_core: Improve indentation Date: Thu, 10 Oct 2024 15:52:44 +0530 Message-ID: <20241010102250.236545-1-umang.jain@ideasonboard.com> X-Mailer: git-send-email 2.45.2 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20241010_032320_787610_D7BEB3B1 X-CRM114-Status: UNSURE ( 4.23 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Small self-contained series to improve indentation on vchiq_core.c. Mostly addressed by reflowing code long lines under 80 columns to adhere to coding style guidelines. The dev_dbg() statements are left untouched. Followed the principle mentioned in the guidelines as: ``` However, never break user-visible strings such as printk messages, because that breaks the ability to grep for them. ``` Hridesh MG (1): staging: vchiq_core: Fix white space indentation error Umang Jain (4): staging: vchiq_core: Indent static_assert on single line staging: vchiq_core: Reflow long lines to 80 columns staging: vchiq_core: Macros indentation fix staging: vchiq_core: Locally cache cache_line_size information .../interface/vchiq_arm/vchiq_core.c | 317 +++++++++++------- 1 file changed, 194 insertions(+), 123 deletions(-)