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 4DCE51841 for ; Sat, 8 Apr 2023 08:22:38 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9908EC433EF; Sat, 8 Apr 2023 08:22:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1680942158; bh=cXMKqHwqy1azEvJGrcgTgrzawxthoP+aOHgL4NnX4zw=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=A1bnkTfopSpWCvF9LWS+1I6fUOzCoCAC9grNMLiUxSsmNGM5z+a9SIMzFJ2depn3h SaMzO4gSuaHxG83AmviwxG1ur9C8l935m4I+SDqI0AeXJLhv4hV7zXUn3h0/4o+Cbx WCIg//NJVoAWybARQfuvuC8Na7MGwggYqrLkZtG0= Date: Sat, 8 Apr 2023 10:22:35 +0200 From: Greg KH To: Deepanshu Kartikey Cc: dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org, linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org Subject: Re: [PATCH] Staging: fbtft: fbtft-bus: fixed extra space and parenthesis issue Message-ID: <2023040814-unfixable-recognize-73d0@gregkh> References: <20230408050323.70919-1-kartikey406@gmail.com> Precedence: bulk X-Mailing-List: linux-staging@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230408050323.70919-1-kartikey406@gmail.com> On Sat, Apr 08, 2023 at 10:33:23AM +0530, Deepanshu Kartikey wrote: > Fixed a coding styling issue > > Signed-off-by: Deepanshu Kartikey > --- > drivers/staging/fbtft/fbtft-bus.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/staging/fbtft/fbtft-bus.c b/drivers/staging/fbtft/fbtft-bus.c > index 3d422bc11641..02a16671f2a1 100644 > --- a/drivers/staging/fbtft/fbtft-bus.c > +++ b/drivers/staging/fbtft/fbtft-bus.c > @@ -62,9 +62,9 @@ out: \ > } \ > EXPORT_SYMBOL(func); > > -define_fbtft_write_reg(fbtft_write_reg8_bus8, u8, u8, ) > +define_fbtft_write_reg(fbtft_write_reg8_bus8, u8, u8) > define_fbtft_write_reg(fbtft_write_reg16_bus8, __be16, u16, cpu_to_be16) > -define_fbtft_write_reg(fbtft_write_reg16_bus16, u16, u16, ) > +define_fbtft_write_reg(fbtft_write_reg16_bus16, u16, u16) > > void fbtft_write_reg8_bus9(struct fbtft_par *par, int len, ...) > { > -- > 2.25.1 > > Any specific reason why you did not test-build your patch before sending it?