From patchwork Thu Mar 8 12:22:44 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Lebreux X-Patchwork-Id: 10267909 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 44FB560364 for ; Thu, 8 Mar 2018 12:23:04 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 357B92942C for ; Thu, 8 Mar 2018 12:23:04 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 2A2722988F; Thu, 8 Mar 2018 12:23:04 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id EF9782942C for ; Thu, 8 Mar 2018 12:23:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755107AbeCHMXC (ORCPT ); Thu, 8 Mar 2018 07:23:02 -0500 Received: from cock.li ([185.100.85.212]:55976 "EHLO cock.li" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754837AbeCHMXB (ORCPT ); Thu, 8 Mar 2018 07:23:01 -0500 From: Tom Lebreux DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cock.li; s=mail; t=1520511780; bh=SOiwFCFnMqg02erMvE/ALU/QAFei8eWSvdK0tFuWJ90=; h=From:To:Cc:Subject:Date:From; b=U3JkTQlt+bhOPM8pVKyf38vvrOLOroJpw3ZETP6/EimCuQnhqgSJyzZUZsoKORyON 1qFMkFDGFw9qKMIdm0YiRj4oOQ35NE5SwHv30eesdX0hXAko7YstGFpDkF5w9hrO5k WZUVS7wKxc/ZIboSlJSvABNjBpemwZGGCMKdgTrF1/sHMcruiMFrNP6KuItNNin679 RZB//XJhsqF9nMU39rykgWUgrvLwDUHHgncHp2UPUzG4VhEDEVMSU6cNuEwhCMC719 EytpZGuzPDtwEEXWw0s0to5p+AwSsR+N90QT9DovrYfyI63uuyJ/g0h8osZLj2/crX QrG7fH+qH2+zQ== To: Jonathan Cameron Cc: Lars-Peter Clausen , linux-iio@vger.kernel.org, Tom Lebreux Subject: [PATCH] staging:iio:ad7150: Align arguments to match open parenthesis Date: Thu, 8 Mar 2018 07:22:44 -0500 Message-Id: <20180308122244.28537-1-tomlebreux@cock.li> X-Mailer: git-send-email 2.16.2 Sender: linux-iio-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-iio@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This fixes the following checkpatch.pl CHECK: Alignment should match open parenthesis --- drivers/staging/iio/cdc/ad7150.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) -- 2.16.2 -- To unsubscribe from this list: send the line "unsubscribe linux-iio" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/staging/iio/cdc/ad7150.c b/drivers/staging/iio/cdc/ad7150.c index 2fe916c48848..947c088407a1 100644 --- a/drivers/staging/iio/cdc/ad7150.c +++ b/drivers/staging/iio/cdc/ad7150.c @@ -124,8 +124,9 @@ static int ad7150_read_raw(struct iio_dev *indio_dev, } static int ad7150_read_event_config(struct iio_dev *indio_dev, - const struct iio_chan_spec *chan, enum iio_event_type type, - enum iio_event_direction dir) + const struct iio_chan_spec *chan, + enum iio_event_type type, + enum iio_event_direction dir) { int ret; u8 threshtype;