Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751215AbbEYSGM (ORCPT ); Mon, 25 May 2015 14:06:12 -0400 Received: from mail-oi0-f44.google.com ([209.85.218.44]:33377 "EHLO mail-oi0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750837AbbEYSGL (ORCPT ); Mon, 25 May 2015 14:06:11 -0400 Message-ID: <5563648F.106@lwfinger.net> Date: Mon, 25 May 2015 13:06:07 -0500 From: Larry Finger User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: Shailendra Verma , Kalle Valo , linux-wireless@vger.kernel.org, netdev@vger.kernel.org CC: linux-kernel@vger.kernel.org Subject: Re: [PATCH] net:wireless - Change 1 to true for bool type variable. References: <1432576544-3639-1-git-send-email-shailendra.capricorn@gmail.com> In-Reply-To: <1432576544-3639-1-git-send-email-shailendra.capricorn@gmail.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1430 Lines: 40 On 05/25/2015 12:55 PM, Shailendra Verma wrote: > The variable translate is bool type.So assigning true instead of 1. > > Signed-off-by: Shailendra Verma When you submit a patch for a particular driver in the drivers/net/wireless/ tree, it is preferred that the subject start with the driver name, not with net:wireless. Accordingly, your subject should be "ray_cs: Change 1 to true for bool type variable". In fact, you can probably choose a better wording for the rest of the title, but I do not insist. Among other advantages, this choice of subject allows easy searches for patches for a given driver using 'git log'. Larry > --- > drivers/net/wireless/ray_cs.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/net/wireless/ray_cs.c b/drivers/net/wireless/ray_cs.c > index 477f863..0881ba8 100644 > --- a/drivers/net/wireless/ray_cs.c > +++ b/drivers/net/wireless/ray_cs.c > @@ -143,7 +143,7 @@ static int psm; > static char *essid; > > /* Default to encapsulation unless translation requested */ > -static bool translate = 1; > +static bool translate = true; > > static int country = USA; > > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/