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 X-Spam-Level: X-Spam-Status: No, score=-8.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 27907CA9EB9 for ; Sat, 26 Oct 2019 04:44:47 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id F1A3A21655 for ; Sat, 26 Oct 2019 04:44:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726032AbfJZEk4 (ORCPT ); Sat, 26 Oct 2019 00:40:56 -0400 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:7919 "EHLO mail2-relais-roc.national.inria.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725853AbfJZEk4 (ORCPT ); Sat, 26 Oct 2019 00:40:56 -0400 X-IronPort-AV: E=Sophos;i="5.68,230,1569276000"; d="scan'208";a="408354237" Received: from ip-121.net-89-2-166.rev.numericable.fr (HELO hadrien) ([89.2.166.121]) by mail2-relais-roc.national.inria.fr with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 26 Oct 2019 06:40:54 +0200 Date: Sat, 26 Oct 2019 06:40:54 +0200 (CEST) From: Julia Lawall X-X-Sender: jll@hadrien To: Cristiane Naves cc: outreachy-kernel@googlegroups.com, Rob Springer , Todd Poynor , Ben Chan , Greg Kroah-Hartman , devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org Subject: Re: [Outreachy kernel] [RESEND PATCH] staging: gasket: Fix line ending with a '(' In-Reply-To: <20191025233909.GA1599@cristiane-Inspiron-5420> Message-ID: References: <20191025233909.GA1599@cristiane-Inspiron-5420> User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 25 Oct 2019, Cristiane Naves wrote: > Fix line ending with a '(' > > Signed-off-by: Cristiane Naves Acked-by: Julia Lawall > --- > drivers/staging/gasket/gasket_ioctl.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/staging/gasket/gasket_ioctl.c b/drivers/staging/gasket/gasket_ioctl.c > index 240f9bb..d1b3e9a 100644 > --- a/drivers/staging/gasket/gasket_ioctl.c > +++ b/drivers/staging/gasket/gasket_ioctl.c > @@ -34,8 +34,8 @@ static int gasket_set_event_fd(struct gasket_dev *gasket_dev, > > trace_gasket_ioctl_eventfd_data(die.interrupt, die.event_fd); > > - return gasket_interrupt_set_eventfd( > - gasket_dev->interrupt_data, die.interrupt, die.event_fd); > + return gasket_interrupt_set_eventfd(gasket_dev->interrupt_data, > + die.interrupt, die.event_fd); > } > > /* Read the size of the page table. */ > -- > 2.7.4 > > -- > You received this message because you are subscribed to the Google Groups "outreachy-kernel" group. > To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com. > To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/20191025233909.GA1599%40cristiane-Inspiron-5420. >