From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arnd Bergmann Subject: Re: [PATCH v2] ARM: sa1100: simpad: Correct I2C GPIO offsets Date: Fri, 10 Nov 2017 16:17:26 +0100 Message-ID: References: <20171107201857.5752-1-linus.walleij@linaro.org> <20171110145038.i4jnqsctdzkfmoe5@ninjato> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: Received: from mail-oi0-f67.google.com ([209.85.218.67]:55299 "EHLO mail-oi0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752127AbdKJPR1 (ORCPT ); Fri, 10 Nov 2017 10:17:27 -0500 Received: by mail-oi0-f67.google.com with SMTP id i192so1522361oib.12 for ; Fri, 10 Nov 2017 07:17:27 -0800 (PST) In-Reply-To: Sender: linux-i2c-owner@vger.kernel.org List-Id: linux-i2c@vger.kernel.org To: Linus Walleij Cc: Wolfram Sang , linux-i2c@vger.kernel.org, Jochen Friedrich , Linux ARM , Russell King On Fri, Nov 10, 2017 at 4:01 PM, Linus Walleij wrote: > On Fri, Nov 10, 2017 at 3:50 PM, Wolfram Sang wrote: > >> Applied to for-next, thanks! > > Thanks man. > >> This from checkpatch makes sense to me: >> >> ERROR: Please use git commit description style 'commit <12+ chars of sha1> ("")' - ie: 'commit b2e63555592f ("i2c: gpio: Convert to use descriptors")' >> #21: >> commit b2e63555592f81331c8da3afaa607d8cf83e8138 > > I never understood that thingie, I thought the check was > only there in order to stop Fixes: tags from running wild. > But feel free to cut it if you want. I have this in my ~/.gitconfig: [core] abbrev = 12 [alias] fixes = show --format='Fixes: %h (\"%s\")' -s So 'git fixes b2e63555592f81331c8da3afaa607d8cf83e8138' produces Fixes: b2e63555592f ("i2c: gpio: Convert to use descriptors") which I then copy into a changelog as the last line, or use only the reference. Arnd