From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755215AbdGKDWO (ORCPT ); Mon, 10 Jul 2017 23:22:14 -0400 Received: from mail-pf0-f170.google.com ([209.85.192.170]:35118 "EHLO mail-pf0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753810AbdGKDWN (ORCPT ); Mon, 10 Jul 2017 23:22:13 -0400 Date: Tue, 11 Jul 2017 08:52:09 +0530 From: Viresh Kumar To: Mitchell Tasman Cc: Vaibhav Hiremath , Johan Hovold , Alex Elder , Greg Kroah-Hartman , greybus-dev@lists.linaro.org, linux-kernel@vger.kernel.org, devel@driverdev.osuosfl.org Subject: Re: [greybus-dev] [PATCH v3] staging: greybus: arche: wrap over-length lines Message-ID: <20170711032209.GK2928@vireshk-i7> References: <20170710044632.GD2928@vireshk-i7> <20170711031444.1357-1-tasman@leaflabs.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170711031444.1357-1-tasman@leaflabs.com> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 10-07-17, 23:14, Mitchell Tasman wrote: > Adjust formatting of several comments to keep line length within > the 80 column limit preferred by the Linux kernel coding style. > > Signed-off-by: Mitchell Tasman > --- > Changes in v3: Narrow scope of patch per Viresh Kumar's feedback > Changes in v2: Add back a missing space in a comment > > drivers/staging/greybus/arche-platform.c | 11 ++++++++--- > 1 file changed, 8 insertions(+), 3 deletions(-) > > diff --git a/drivers/staging/greybus/arche-platform.c b/drivers/staging/greybus/arche-platform.c > index eced2d2..6259904 100644 > --- a/drivers/staging/greybus/arche-platform.c > +++ b/drivers/staging/greybus/arche-platform.c > @@ -176,7 +176,10 @@ static irqreturn_t arche_platform_wd_irq(int irq, void *devid) > arche_platform_set_wake_detect_state(arche_pdata, > WD_STATE_IDLE); > } else { > - /* Check we are not in middle of irq thread already */ > + /* > + * Check we are not in middle of irq thread > + * already > + */ > if (arche_pdata->wake_detect_state != > WD_STATE_COLDBOOT_START) { > arche_platform_set_wake_detect_state(arche_pdata, > @@ -657,12 +660,14 @@ static SIMPLE_DEV_PM_OPS(arche_platform_pm_ops, > arche_platform_resume); > > static const struct of_device_id arche_platform_of_match[] = { > - { .compatible = "google,arche-platform", }, /* Use PID/VID of SVC device */ > + /* Use PID/VID of SVC device */ > + { .compatible = "google,arche-platform", }, > { }, > }; > > static const struct of_device_id arche_combined_id[] = { > - { .compatible = "google,arche-platform", }, /* Use PID/VID of SVC device */ > + /* Use PID/VID of SVC device */ > + { .compatible = "google,arche-platform", }, > { .compatible = "usbffff,2", }, > { }, > }; Acked-by: Viresh Kumar -- viresh