From: Joe Perches Subject: Re: [PATCH 44/44] sound/soc/codecs: Remove unnecessary semicolons Date: Mon, 15 Nov 2010 11:52:53 -0800 Lines: 52 Message-ID: <1289850773.16461.166.camel@Joe-Laptop> References: <97fd199b7dac50613f6843156687223928cce44a.1289789605.git.joe@perches.com> <20101115134939.GC12986@rakim.wolfsonmicro.main> <1289840957.16461.138.camel@Joe-Laptop> <20101115173031.GI12986@rakim.wolfsonmicro.main> <1289842444.16461.140.camel@Joe-Laptop> <20101115182708.GJ12986@rakim.wolfsonmicro.main> <1289845830.16461.149.camel@Joe-Laptop> <20101115190738.GF3338@sirena.org.uk> <1289848458.16461.150.camel@Joe-Laptop> <20101115193407.GK12986@rakim.wolfsonmicro.main> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Cc: Jiri Kosina , Ian Lartey , Dimitris Papastamos , Liam Girdwood , Jaroslav Kysela , Takashi Iwai , alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org To: Mark Brown X-From: linux-kernel-owner@vger.kernel.org Mon Nov 15 20:53:21 2010 Return-path: Envelope-to: glk-linux-kernel-3@lo.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PI57A-0001v9-CG for glk-linux-kernel-3@lo.gmane.org; Mon, 15 Nov 2010 20:53:20 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932871Ab0KOTw5 (ORCPT ); Mon, 15 Nov 2010 14:52:57 -0500 Received: from mail.perches.com ([173.55.12.10]:1328 "EHLO mail.perches.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758222Ab0KOTw4 (ORCPT ); Mon, 15 Nov 2010 14:52:56 -0500 Received: from [192.168.1.162] (unknown [192.168.1.162]) by mail.perches.com (Postfix) with ESMTP id CE13524368; Mon, 15 Nov 2010 11:51:05 -0800 (PST) In-Reply-To: <20101115193407.GK12986@rakim.wolfsonmicro.main> X-Mailer: Evolution 2.30.3 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Archived-At: On Mon, 2010-11-15 at 19:34 +0000, Mark Brown wrote: > On Mon, Nov 15, 2010 at 11:14:18AM -0800, Joe Perches wrote: > > On Mon, 2010-11-15 at 19:07 +0000, Mark Brown wrote: > > > I'd suggest using pattern matching to look up the > > > rules for generating the prefixes (it's pretty much entirely prefixes) > > > in the same way you're handling figuring out who to mail - that'd > > > probably cover it in an automatable fashion. > > Publish a tool that works and I'll use it. > It appears your scripts are already hooked into get_maintainers.pl which > would seem the obvious place to do this? Sadly I don't do perl, though > it looks like you're doing pretty much all the work on that anyway. Sadly, no it's not the right place. That script just generates cc email addresses for pre-formatted commit patches. It'd have to be a script that modifies the git commit subject line to the taste of the subsystem maintainer. Right now, I use a commit script that's something like: #!/bin/bash echo "$1: Remove unnecessary semicolons" > msg echo >> msg #cat >> msg <