From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753291AbeBSQBo (ORCPT ); Mon, 19 Feb 2018 11:01:44 -0500 Received: from mx08-00178001.pphosted.com ([91.207.212.93]:53703 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753219AbeBSQBl (ORCPT ); Mon, 19 Feb 2018 11:01:41 -0500 From: Amelie DELAUNAY To: Philippe Ombredanne CC: Lee Jones , Linus Walleij , Rob Herring , Mark Rutland , Russell King , "Alexandre TORGUE" , Maxime Coquelin , "linux-gpio@vger.kernel.org" , LKML , "open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS" , "moderated list:ARM/FREESCALE IMX / MXC ARM ARCHITECTURE" Subject: Re: [PATCH 2/6] mfd: Add ST Multi-Function eXpander core driver Thread-Topic: [PATCH 2/6] mfd: Add ST Multi-Function eXpander core driver Thread-Index: AQHToOkCMgAtE6p6MUacifCOH+p/o6OgoRsAgAAkOYCACx2zAA== Date: Mon, 19 Feb 2018 16:00:48 +0000 Message-ID: <889cec8c-5a3a-ffc5-e6fa-aa388485e601@st.com> References: <1518100057-23234-1-git-send-email-amelie.delaunay@st.com> <1518100057-23234-3-git-send-email-amelie.delaunay@st.com> <20180212120600.5cghrzz4jqvvkgz6@dell> In-Reply-To: Accept-Language: fr-FR, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: user-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.6.0 x-ms-exchange-messagesentrepresentingtype: 1 x-ms-exchange-transport-fromentityheader: Hosted x-originating-ip: [10.75.127.44] Content-Type: text/plain; charset="utf-8" Content-ID: <7693714657D62040ADFB3C50F73EB2A2@st.com> MIME-Version: 1.0 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2018-02-19_07:,, signatures=0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from base64 to 8bit by mail.home.local id w1JG1n42013635 Thanks Philippe, I will take this into account for V2. Regards, Amelie On 02/12/2018 03:15 PM, Philippe Ombredanne wrote: > Amelie, > > On Mon, Feb 12, 2018 at 1:06 PM, Lee Jones wrote: >> On Thu, 08 Feb 2018, Amelie Delaunay wrote: >> >>> ST Multi-Function eXpander (MFX) is a slave controller using I2C >>> for communication with the main MCU. Main features are: >>> - 16 fast GPIOs individually configurable in input/output >>> - 8 alternate GPIOs individually configurable in input/output >>> - Main MCU IDD measurement >>> - Resistive touchscreen controller >>> >>> Only GPIO expander (16 fast GPIOs + 8 alternate) feature is >>> supported for the moment. >>> >>> Signed-off-by: Amelie Delaunay > > > >>> --- /dev/null >>> +++ b/drivers/mfd/st-mfx.c >>> @@ -0,0 +1,526 @@ >>> +/* >>> + * STMicroelectronics Multi-Function eXpander (ST-MFX) Core Driver >>> + * >>> + * Copyright (C) 2017, STMicroelectronics - All Rights Reserved >>> + * Author(s): Amelie Delaunay for STMicroelectronics. >> >> You don't need to put "for STMicroelectronics". This was something we >> made up when submitting from a different (!st.com) email address. >> >>> + * License terms: GPL V2.0. >>> + * >>> + * st-mfx Core Driver is free software; you can redistribute it and/or modify it >>> + * under the terms of the GNU General Public License version 2 as published by >>> + * the Free Software Foundation. >>> + * >>> + * st-mfx Core Driver is distributed in the hope that it will be useful, but >>> + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or >>> + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more >>> + * details. >>> + * >>> + * You should have received a copy of the GNU General Public License along with >>> + * st-mfx Core Driver. If not, see . >> >> You should be able to use the short version of the licensing >> agreement. Also, please grep for "SPDX". > > You can check the doc for the (fairly new) way to remove legalese > boilerplate at Documentation/process/license-rules.rst or [1] > It helps keep the focus on the code and less on licensing! > > [1] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/license-rules.rst >