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 46CFBC433FE for ; Thu, 24 Nov 2022 19:12:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229436AbiKXTMW (ORCPT ); Thu, 24 Nov 2022 14:12:22 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51136 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229379AbiKXTMV (ORCPT ); Thu, 24 Nov 2022 14:12:21 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7F14C663DC; Thu, 24 Nov 2022 11:12:20 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 15DE4621FC; Thu, 24 Nov 2022 19:12:20 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 05400C433D6; Thu, 24 Nov 2022 19:12:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1669317139; bh=fm5hOY1yL5EyiRszJuhpXBvb/9VJ/KPDtI6wze+nQP0=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=UDOzl5ePCO7sbcRg6ZQAGDYW/Qlx4j2W5Tz71b4rTPSJHpS7fnxYGTmdFhYvqmGD3 mmtgd7C8CxX5WbkBOVTHorfOdajrdZiaB7GGWPtpnuBr2GtmIDwqiej1pdtI3rJxaY MGV08wfTlylbnFuD8jK4GArnVdpTI80vj0IUUiTPPA+RLKVhnLX8Gh9e86A62xD3VD 6dU54VPJ0gO2XVLX8PpycESIS7AVgNjlrDgKU2cdm53Ai5FrlImW42S6QWm88TJw9e fzrrKcKE4Br1ubJgvTANG07iKQGXiP/Vc7pc3JbrWudlogMb6uZrM0zqXZHFL1mBqR Fq8IR2h3taXCw== Date: Thu, 24 Nov 2022 19:24:53 +0000 From: Jonathan Cameron To: Cosmin Tanislav Cc: Cosmin Tanislav , Lars-Peter Clausen , Michael Hennerich , Rasmus Villemoes , linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] iio: addac: ad74413r: fix blank line after declaration warning Message-ID: <20221124192453.13cf0d1c@jic23-huawei> In-Reply-To: <20221124153049.8851-1-cosmin.tanislav@analog.com> References: <20221124153049.8851-1-cosmin.tanislav@analog.com> X-Mailer: Claws Mail 4.1.1 (GTK 3.24.34; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-iio@vger.kernel.org On Thu, 24 Nov 2022 17:30:49 +0200 Cosmin Tanislav wrote: > Checkpatch wants a blank line after all declarations. Add it now, > even though the patch has already been submitted. > > Signed-off-by: Cosmin Tanislav > Fixes: 7b2366008125 ("iio: addac: ad74413r: add spi_device_id table") Dropped fixes tag as this is just cosmetic. Applied. > --- > drivers/iio/addac/ad74413r.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/iio/addac/ad74413r.c b/drivers/iio/addac/ad74413r.c > index 61030053cbea..f32c8c2fb26d 100644 > --- a/drivers/iio/addac/ad74413r.c > +++ b/drivers/iio/addac/ad74413r.c > @@ -1315,6 +1315,7 @@ static int ad74413r_probe(struct spi_device *spi) > st->chip_info = device_get_match_data(&spi->dev); > if (!st->chip_info) { > const struct spi_device_id *id = spi_get_device_id(spi); > + > if (id) > st->chip_info = > (struct ad74413r_chip_info *)id->driver_data;