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=-15.5 required=3.0 tests=BAYES_00,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_SANE_2 autolearn=unavailable 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 A6421C433E6 for ; Tue, 29 Dec 2020 18:19:28 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 72F81207AB for ; Tue, 29 Dec 2020 18:19:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726290AbgL2ST1 convert rfc822-to-8bit (ORCPT ); Tue, 29 Dec 2020 13:19:27 -0500 Received: from mail.kernel.org ([198.145.29.99]:35500 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726196AbgL2ST1 (ORCPT ); Tue, 29 Dec 2020 13:19:27 -0500 Received: from archlinux (cpc108967-cmbg20-2-0-cust86.5-4.cable.virginm.net [81.101.6.87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 27C71207AB; Tue, 29 Dec 2020 18:18:45 +0000 (UTC) Date: Tue, 29 Dec 2020 18:18:41 +0000 From: Jonathan Cameron To: Srinivas Pandruvada Cc: Zheng Yongjun , jikos@kernel.org, benjamin.tissoires@redhat.com, linux-input@vger.kernel.org, linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH -next] hid/hid-sensor-custom: convert comma to semicolon Message-ID: <20201229181841.6d63213a@archlinux> In-Reply-To: References: <20201214133212.3569-1-zhengyongjun3@huawei.com> X-Mailer: Claws Mail 3.17.8 (GTK+ 2.24.33; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 14 Dec 2020 06:13:58 -0800 Srinivas Pandruvada wrote: > On Mon, 2020-12-14 at 21:32 +0800, Zheng Yongjun wrote: > > Replace a comma between expression statements by a semicolon. > > > > Signed-off-by: Zheng Yongjun > Acked-by: Srinivas Pandruvada Applied to the togreg branch of iio.git and pushed out as testing for the autobuilders to see if they can break it. Thanks, Jonathan > > > --- > >  drivers/hid/hid-sensor-custom.c | 2 +- > >  1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/drivers/hid/hid-sensor-custom.c b/drivers/hid/hid- > > sensor-custom.c > > index 4d25577a8573..6c47a2e7623d 100644 > > --- a/drivers/hid/hid-sensor-custom.c > > +++ b/drivers/hid/hid-sensor-custom.c > > @@ -728,7 +728,7 @@ static int hid_sensor_custom_dev_if_add(struct > > hid_sensor_custom *sensor_inst) > >   > >         sensor_inst->custom_dev.minor = MISC_DYNAMIC_MINOR; > >         sensor_inst->custom_dev.name = dev_name(&sensor_inst->pdev- > > >dev); > > -       sensor_inst->custom_dev.fops = &hid_sensor_custom_fops, > > +       sensor_inst->custom_dev.fops = &hid_sensor_custom_fops; > >         ret = misc_register(&sensor_inst->custom_dev); > >         if (ret) { > >                 kfifo_free(&sensor_inst->data_fifo); > >