From patchwork Thu Dec 3 12:59:53 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sudip Mukherjee X-Patchwork-Id: 7759671 Return-Path: X-Original-To: patchwork-linux-spi@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 9D1569F39B for ; Thu, 3 Dec 2015 13:00:11 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id CCBAF20574 for ; Thu, 3 Dec 2015 13:00:10 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 093DB2058C for ; Thu, 3 Dec 2015 13:00:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757549AbbLCNAI (ORCPT ); Thu, 3 Dec 2015 08:00:08 -0500 Received: from mail-pa0-f41.google.com ([209.85.220.41]:35099 "EHLO mail-pa0-f41.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751401AbbLCNAH (ORCPT ); Thu, 3 Dec 2015 08:00:07 -0500 Received: by pacej9 with SMTP id ej9so69051876pac.2; Thu, 03 Dec 2015 05:00:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=E4/kHWZst3/evLO0faivdyQnYfY/4ITP9vIAz9r3yac=; b=Cj20rHjbEkGATMNbKT9PQ/b4eKvRYv56EUOeW7sjf7TtkhxMDHUKEzkMa7Odqhuext WMyj5dnH5q5rWuIog9H0Glt4H3sPjOABScNE7o6piXIjIYkMT4fp6vn/D3lp3kQvhrfw fwcmFg6X/ZpcWpFgux5YSb6vanuIOjiT+ELoOdCfUJnfJ0//LldLRizl0yiO6oheegZj Fc27ornU7meODrRC0QpdSXffhZUIYCFxnuuIOrwJe+e01l7cAHBAjZVnZQ/YfkXs2MFn h5SMSzaD3HpYDAmQuYpldEbC5PJ/u6Pm/ZenkLzHc8+oqOUF+c7JyEZoQPKlrq4nv6H5 wZYA== X-Received: by 10.66.251.226 with SMTP id zn2mr12932220pac.44.1449147606617; Thu, 03 Dec 2015 05:00:06 -0800 (PST) Received: from sudip-pc.vectortproxy.org ([49.206.241.12]) by smtp.gmail.com with ESMTPSA id 82sm10717689pfn.76.2015.12.03.05.00.04 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 03 Dec 2015 05:00:06 -0800 (PST) From: Sudip Mukherjee To: Mark Brown Cc: linux-kernel@vger.kernel.org, linux-spi@vger.kernel.org, Sudip Mukherjee Subject: [PATCH 1/7] spi: lm70llp: remove multiple blank lines Date: Thu, 3 Dec 2015 18:29:53 +0530 Message-Id: <1449147599-26705-1-git-send-email-sudipm.mukherjee@gmail.com> X-Mailer: git-send-email 1.9.1 Sender: linux-spi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-spi@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP checkpatch complains about multiple blank lines. Signed-off-by: Sudip Mukherjee --- drivers/spi/spi-lm70llp.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/drivers/spi/spi-lm70llp.c b/drivers/spi/spi-lm70llp.c index ba72347..eb4b421 100644 --- a/drivers/spi/spi-lm70llp.c +++ b/drivers/spi/spi-lm70llp.c @@ -23,11 +23,9 @@ #include #include - #include #include - /* * The LM70 communicates with a host processor using a 3-wire variant of * the SPI/Microwire bus interface. This driver specifically supports an @@ -88,7 +86,6 @@ struct spi_lm70llp { /* REVISIT : ugly global ; provides "exclusive open" facility */ static struct spi_lm70llp *lm70llp; - /*-------------------------------------------------------------------*/ static inline struct spi_lm70llp *spidev_to_pp(struct spi_device *spi) @@ -319,7 +316,6 @@ static void spi_lm70llp_detach(struct parport *p) lm70llp = NULL; } - static struct parport_driver spi_lm70llp_drv = { .name = DRVNAME, .attach = spi_lm70llp_attach,