From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Return-Path: Message-ID: <1487702851.2853.25.camel@perches.com> Subject: Re: [PATCH] staging/ks7010: formatting updates. From: Joe Perches To: Matthew Giassa , Geert Uytterhoeven Cc: Wolfram Sang , Greg KH , "linux-kernel@vger.kernel.org" , Linux-Renesas , driverdevel Date: Tue, 21 Feb 2017 10:47:31 -0800 In-Reply-To: <20170221173212.bhcqevjoatixnekz@darkstar> References: <1487650805-30520-1-git-send-email-matthew@giassa.net> <20170221141256.gowusquywtvyr7ac@shinestorm> <20170221173212.bhcqevjoatixnekz@darkstar> Content-Type: text/plain; charset="ISO-8859-1" Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: On Tue, 2017-02-21 at 09:32 -0800, Matthew Giassa wrote: > * Geert Uytterhoeven [2017-02-21 15:22:10 +0100]: > > > The first declaration fit nicely on a single line. > > The second one indeed has a few spaces instead of TABs in the > > continuation line. But that can be fixed easily, without moving the > > first parameter to a continuation line. > > What would the proposed fix be? A combination of spaces and hard-tabs? I > don't see checkpatch complaining about it, so that could work too. Maximal initial tabs, followed by required spaces to align to open parenthesis So from: int ks_wlan_setup_parameter(struct ks_wlan_private *priv, unsigned int commit_flag); (2 tabs followed by 13 spaces) to: int ks_wlan_setup_parameter(struct ks_wlan_private *priv, unsigned int commit_flag); (3 tabs followed by 4 spaces)