From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751125AbbIXEZa (ORCPT ); Thu, 24 Sep 2015 00:25:30 -0400 Received: from mail-pa0-f50.google.com ([209.85.220.50]:36206 "EHLO mail-pa0-f50.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750759AbbIXEZ3 (ORCPT ); Thu, 24 Sep 2015 00:25:29 -0400 Date: Thu, 24 Sep 2015 09:55:17 +0530 From: Sudip Mukherjee To: punit vara Cc: Jaime Arrocha , Larry.Finger@lwfinger.net, devel@driverdev.osuosl.org, Flo Schil , linux-kernel@vger.kernel.org, Greg KH Subject: Re: [PATCH 13/13] Staging: rtl8712: Coding style warning fix for block comment Message-ID: <20150924042517.GA20187@sudip-pc> References: <1442954036-9037-1-git-send-email-punitvara@gmail.com> <20150923053105.GC4010@sudip-pc> <56025403.4010004@innercoder.com> <20150923153443.GA13153@sudip-pc> <20150923163359.GA13415@sudip-pc> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Sep 23, 2015 at 11:22:09PM +0530, punit vara wrote: > On Wed, Sep 23, 2015 at 10:25 PM, punit vara wrote: > > Thank you very much sir I will definitely follow that. I have seen so > > many people fixing patches over here. Now I know process of submitting > > patches.I am able to fix several patches created by checkpatch.pl . > > But can you suggest me any driver to fix API or another small TODO > > task. I have seen so many TODO but confuse where to start . Can you > > give me some initial idea or though or any driver to fix bugs ? :-) > > > Dear Sudip sir, > > I have used git format-patch master..my_local_branch But It also > produce numbers in subject of patch. > Now I have used git format-patch master..my_local_branch -N ..It does > not generate any number in patch even if you have previous patches Usually I will not diff between the master and my local branch. I will sync my local branch with the master in the morning and commit my changes there. Now while generating the patch if I want to generate my last patch then I just use git format-patch -1. If you want last 2 patches then use git format-patch -2. If you want to have them in series with the numbering in the subject use git format-patch -2 -n. And please dont use "sir". regards sudip