Received: by 2002:a25:6193:0:0:0:0:0 with SMTP id v141csp1859508ybb; Thu, 2 Apr 2020 08:37:16 -0700 (PDT) X-Google-Smtp-Source: APiQypIoZl+XRtOZJHAgSHWRb4LyOhiSwYt52fpr8ek7WvVNAL9SUH7ARchT2a2/WwNrafVzL5jq X-Received: by 2002:a9d:600b:: with SMTP id h11mr2750033otj.210.1585841836591; Thu, 02 Apr 2020 08:37:16 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1585841836; cv=none; d=google.com; s=arc-20160816; b=Zsm2zkN7rsyLDG17YaT1q2cElNIldo66UsEVo/e6/E83u2cGxT1/yfi63vbHHV1Hfi s2ICv3ysz2rGY2CGtC1Gy31neZ1RVEXU2UqhjDh1ue/AZYUlsCvPQKXARrIB5i2w4End X5M7gha0LrmwMO2vQYlhJzzkDa0pT1N57c5pb7nEnC6GZHharGi7+J5EujOLRtchSSw1 m8HZmkR/XE54ldAA4e9JTa3njuoPmVmjlvWm3QF4OiPECN000MSDd38Dhuf7oFYQgsKZ nJrAvTNb6d5WgrFR3rsQoU+0euC5iZwwYJZEUSkMY92MOCoC0vil/+k1vDLJFW8ABH17 0/AA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=LPVCzEwynyr4NDmwZAcO8jxkvQ6F8aFenw/dUols4Y4=; b=GECdWLFaI0+rtm8Xe0ZUaomYTEGw95HV1LoaoiXEx54WmKfw1reHmKKH3QXCQd4ABZ VLRpz/IDnQud0pmdRuubwHd/yZCxPJs7+WwVtyjTRgqEpjHkmaGjz5MXjrYKEmLsZGaG 7dOUG9HWfFlrffLLRlzqQduq8L+YIr2QOpY4NTulQn6igfpnnw9A8ZQapoMz3HHC9Pzo MgO8q4h89bjt3lg/ptyoOB7wv3rPGItM4YWuvmQdzu6yn4N7e0b5FVmv6q40Y2/T++Fq EQ2FZH8MLoUM9YMFsuQgsNzfcS1/eU5MUbr2kAG7Fa2s5YxblEzEmO1PSsJ5u76GYQwA 3ODA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-wireless-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-wireless-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id r5si2356090otp.241.2020.04.02.08.36.44; Thu, 02 Apr 2020 08:37:16 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-wireless-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-wireless-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-wireless-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2389255AbgDBPgF (ORCPT + 99 others); Thu, 2 Apr 2020 11:36:05 -0400 Received: from mx.sdf.org ([205.166.94.20]:50283 "EHLO mx.sdf.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1732754AbgDBPgF (ORCPT ); Thu, 2 Apr 2020 11:36:05 -0400 Received: from sdf.org (IDENT:lkml@faeroes.freeshell.org [205.166.94.9]) by mx.sdf.org (8.15.2/8.14.5) with ESMTPS id 032FUYud026016 (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256 bits) verified NO); Thu, 2 Apr 2020 15:30:35 GMT Received: (from lkml@localhost) by sdf.org (8.15.2/8.12.8/Submit) id 032FUYVI019469; Thu, 2 Apr 2020 15:30:34 GMT Date: Thu, 2 Apr 2020 15:30:34 +0000 From: George Spelvin To: Dan Carpenter Cc: Ajay.Kathat@microchip.com, linux-wireless@vger.kernel.org, devel@driverdev.osuosl.org, gregkh@linuxfoundation.org, johannes@sipsolutions.net, Adham.Abozaeid@microchip.com, lkml@sdf.org Subject: Re: [PATCH v3] staging: wilc1000: Use crc7 in lib/ rather than a private copy Message-ID: <20200402153034.GB2013@SDF.ORG> References: <20200326152251.19094-1-ajay.kathat@microchip.com> <20200402082745.GG2001@kadam> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200402082745.GG2001@kadam> Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org On Thu, Apr 02, 2020 at 11:27:45AM +0300, Dan Carpenter wrote: > I don't know how this patch made it through two versions without anyone > complaining that this paragraph should be done as a separate patch... I often fold comment (and spacing/formatting) patches in to a main patch, when touching adjacent code anyway and it doesn't cause distracting clutter. This seemed like such a case, which is why I submitted it as one. But it's a bit of style thing. >> Cc: Adham Abozaeid >> Cc: linux-wireless@vger.kernel.org >> Reviewed-by: Ajay Singh >> Signed-off-by: George Spelvin >> --- > > This should have you Signed-off-by. The Reviewed-by is kind of assumed > so you can drop that bit. But everyone who touches a patch needs to > add their signed off by. Er... all he did was add "staging: " to the front of the title. That's not a change to the code at all, and as trivial a change to the commit message as adding "Reviewed-by:" to the end. We don't need S-o-b for such things or we'd end up in a horrible infinite recursion.