* [RFC PATCH v4 0/1] Re-license MTK NAND driver @ 2019-05-07 9:20 Xiaolei Li 2019-05-07 9:20 ` [RFC PATCH v4 1/1] mtd: rawnand: mtk: Re-license MTK NAND driver as Dual MIT/GPL Xiaolei Li 2019-05-07 9:40 ` [RFC PATCH v4 0/1] Re-license MTK NAND driver Dan Carpenter 0 siblings, 2 replies; 15+ messages in thread From: Xiaolei Li @ 2019-05-07 9:20 UTC (permalink / raw) To: miquel.raynal, richard Cc: daniel.thompson, ryder.lee, arnd, srv_heupstream, yamada.masahiro, yellowriver2010, gustavo, jorge.ramirez-ortiz, matthias.bgg, boris.brezillon, linux-mtd, weiyongjun1, yingjoe.chen, rafal, linux-mediatek, xiaolei.li, rogercc.lin, dan.carpenter, peterpandong Hello, Currently, MTK NAND driver is licensed as GPL. And we would like to modify and publish it in bootloader with MIT license. So, here we send this RFC patch to solicit ACKs from MTK NAND driver authors and contributors whether we can re-license MTK NAND driver as dual MIT/GPL. Thanks and looking forward to your reply, Xiaolei Patch v4: --------- - Append ACK from Miquel, Boris, RogerCC, Ryder, Rafal. - Use "git log --follow" to find all contributors and add them all in Cc list. Patch v3: --------- - Add license text replacement description in commit log. Patch v2: --------- - Add Ryder, Rafal, Wen in CC list. - Introduce why we want to re-license MTK NAND driver. Xiaolei Li (1): mtd: rawnand: mtk: Re-license MTK NAND driver as Dual MIT/GPL drivers/mtd/nand/raw/mtk_ecc.c | 12 ++---------- drivers/mtd/nand/raw/mtk_ecc.h | 4 +--- drivers/mtd/nand/raw/mtk_nand.c | 12 ++---------- 3 files changed, 5 insertions(+), 23 deletions(-) -- 2.18.0 ______________________________________________________ Linux MTD discussion mailing list http://lists.infradead.org/mailman/listinfo/linux-mtd/ ^ permalink raw reply [flat|nested] 15+ messages in thread
* [RFC PATCH v4 1/1] mtd: rawnand: mtk: Re-license MTK NAND driver as Dual MIT/GPL 2019-05-07 9:20 [RFC PATCH v4 0/1] Re-license MTK NAND driver Xiaolei Li @ 2019-05-07 9:20 ` Xiaolei Li [not found] ` <20190507092020.1917-2-xiaolei.li-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org> 2019-05-07 9:40 ` [RFC PATCH v4 0/1] Re-license MTK NAND driver Dan Carpenter 1 sibling, 1 reply; 15+ messages in thread From: Xiaolei Li @ 2019-05-07 9:20 UTC (permalink / raw) To: miquel.raynal, richard Cc: daniel.thompson, ryder.lee, arnd, srv_heupstream, yamada.masahiro, yellowriver2010, gustavo, jorge.ramirez-ortiz, matthias.bgg, boris.brezillon, linux-mtd, weiyongjun1, yingjoe.chen, rafal, linux-mediatek, xiaolei.li, rogercc.lin, dan.carpenter, peterpandong It is wanted to use MTK NAND driver with GPL-2.0 or MIT license. But now it is only licensed as GPL-2.0. So re-license it as dual MIT/GPL and replace license text with SPDX tag. Signed-off-by: Xiaolei Li <xiaolei.li@mediatek.com> Acked-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> Acked-by: Ryder Lee <ryder.lee@mediatek.com> Acked-by: Rafał Miłecki <rafal@milecki.pl> Acked-by: Miquel Raynal <miquel.raynal@bootlin.com> Acked-by: Boris Brezillon <boris.brezillon@collabora.com> Acked-by: RogerCC Lin <rogercc.lin@mediatek.com> --- drivers/mtd/nand/raw/mtk_ecc.c | 12 ++---------- drivers/mtd/nand/raw/mtk_ecc.h | 4 +--- drivers/mtd/nand/raw/mtk_nand.c | 12 ++---------- 3 files changed, 5 insertions(+), 23 deletions(-) diff --git a/drivers/mtd/nand/raw/mtk_ecc.c b/drivers/mtd/nand/raw/mtk_ecc.c index 6432bd70c3b3..eea0f903bc24 100644 --- a/drivers/mtd/nand/raw/mtk_ecc.c +++ b/drivers/mtd/nand/raw/mtk_ecc.c @@ -1,17 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0 OR MIT /* * MTK ECC controller driver. * Copyright (C) 2016 MediaTek Inc. * Authors: Xiaolei Li <xiaolei.li@mediatek.com> * Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> - * - * This program 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. - * - * This program 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. */ #include <linux/platform_device.h> @@ -600,4 +592,4 @@ module_platform_driver(mtk_ecc_driver); MODULE_AUTHOR("Xiaolei Li <xiaolei.li@mediatek.com>"); MODULE_DESCRIPTION("MTK Nand ECC Driver"); -MODULE_LICENSE("GPL"); +MODULE_LICENSE("Dual MIT/GPL"); diff --git a/drivers/mtd/nand/raw/mtk_ecc.h b/drivers/mtd/nand/raw/mtk_ecc.h index a455df080952..0e48c36e6ca0 100644 --- a/drivers/mtd/nand/raw/mtk_ecc.h +++ b/drivers/mtd/nand/raw/mtk_ecc.h @@ -1,12 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0 OR MIT */ /* * MTK SDG1 ECC controller * * Copyright (c) 2016 Mediatek * Authors: Xiaolei Li <xiaolei.li@mediatek.com> * Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> - * This program 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. */ #ifndef __DRIVERS_MTD_NAND_MTK_ECC_H__ diff --git a/drivers/mtd/nand/raw/mtk_nand.c b/drivers/mtd/nand/raw/mtk_nand.c index b6b4602f5132..3cbc25793062 100644 --- a/drivers/mtd/nand/raw/mtk_nand.c +++ b/drivers/mtd/nand/raw/mtk_nand.c @@ -1,17 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0 OR MIT /* * MTK NAND Flash controller driver. * Copyright (C) 2016 MediaTek Inc. * Authors: Xiaolei Li <xiaolei.li@mediatek.com> * Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> - * - * This program 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. - * - * This program 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. */ #include <linux/platform_device.h> @@ -1598,6 +1590,6 @@ static struct platform_driver mtk_nfc_driver = { module_platform_driver(mtk_nfc_driver); -MODULE_LICENSE("GPL"); +MODULE_LICENSE("Dual MIT/GPL"); MODULE_AUTHOR("Xiaolei Li <xiaolei.li@mediatek.com>"); MODULE_DESCRIPTION("MTK Nand Flash Controller Driver"); -- 2.18.0 ______________________________________________________ Linux MTD discussion mailing list http://lists.infradead.org/mailman/listinfo/linux-mtd/ ^ permalink raw reply related [flat|nested] 15+ messages in thread
[parent not found: <20190507092020.1917-2-xiaolei.li-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org>]
* Re: [RFC PATCH v4 1/1] mtd: rawnand: mtk: Re-license MTK NAND driver as Dual MIT/GPL [not found] ` <20190507092020.1917-2-xiaolei.li-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org> @ 2019-05-07 10:06 ` Miquel Raynal 2019-05-07 10:18 ` xiaolei li 2019-05-07 10:48 ` Rafał Miłecki 2019-05-24 7:52 ` Arnd Bergmann 2 siblings, 1 reply; 15+ messages in thread From: Miquel Raynal @ 2019-05-07 10:06 UTC (permalink / raw) To: Xiaolei Li Cc: daniel.thompson-QSEj5FYQhm4dnm+yROfE0A, ryder.lee-NuS5LvNUpcJWk0Htik3J/w, arnd-r2nGTMty4D4, srv_heupstream-NuS5LvNUpcJWk0Htik3J/w, gustavo-L1vi/lXTdts+Va1GwOuvDg, richard-/L3Ra7n9ekc, yingjoe.chen-NuS5LvNUpcJWk0Htik3J/w, linux-mediatek-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, yamada.masahiro-uWyLwvC0a2jby3iVrkZq2A, rafal-g1n6cQUeyibVItvQsEIGlw, boris.brezillon-ZGY8ohtN/8qB+jHODAdFcQ, linux-mtd-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, weiyongjun1-hv44wF8Li93QT0dZR+AlfA, yellowriver2010-PkbjNfxxIARBDgjK7y7TUQ, matthias.bgg-Re5JQEeQqe8AvxtiuMwx3w, jorge.ramirez-ortiz-QSEj5FYQhm4dnm+yROfE0A, rogercc.lin-NuS5LvNUpcJWk0Htik3J/w, dan.carpenter-QHcLZuEGTsvQT0dZR+AlfA, peterpandong-AL4WhLSQfzjQT0dZR+AlfA Hi Xiaolei, Xiaolei Li <xiaolei.li@mediatek.com> wrote on Tue, 7 May 2019 17:20:20 +0800: > It is wanted to use MTK NAND driver with GPL-2.0 or MIT license. > But now it is only licensed as GPL-2.0. > So re-license it as dual MIT/GPL and replace license text with > SPDX tag. > > Signed-off-by: Xiaolei Li <xiaolei.li@mediatek.com> > Acked-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> > Acked-by: Ryder Lee <ryder.lee@mediatek.com> > Acked-by: Rafał Miłecki <rafal@milecki.pl> > Acked-by: Miquel Raynal <miquel.raynal@bootlin.com> > Acked-by: Boris Brezillon <boris.brezillon@collabora.com> > Acked-by: RogerCC Lin <rogercc.lin@mediatek.com> > --- When there is only one patch, no need to create a cover letter. You can put the text which is in 0/1 below the three dashes '---'. Also no need to send a new version while there is nothing changed in the code. Patchwork automatically collects tags. Thanks, Miquèl _______________________________________________ Linux-mediatek mailing list Linux-mediatek@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-mediatek ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [RFC PATCH v4 1/1] mtd: rawnand: mtk: Re-license MTK NAND driver as Dual MIT/GPL 2019-05-07 10:06 ` Miquel Raynal @ 2019-05-07 10:18 ` xiaolei li 0 siblings, 0 replies; 15+ messages in thread From: xiaolei li @ 2019-05-07 10:18 UTC (permalink / raw) To: Miquel Raynal Cc: daniel.thompson-QSEj5FYQhm4dnm+yROfE0A, ryder.lee-NuS5LvNUpcJWk0Htik3J/w, arnd-r2nGTMty4D4, srv_heupstream-NuS5LvNUpcJWk0Htik3J/w, gustavo-L1vi/lXTdts+Va1GwOuvDg, richard-/L3Ra7n9ekc, yingjoe.chen-NuS5LvNUpcJWk0Htik3J/w, linux-mediatek-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, yamada.masahiro-uWyLwvC0a2jby3iVrkZq2A, rafal-g1n6cQUeyibVItvQsEIGlw, boris.brezillon-ZGY8ohtN/8qB+jHODAdFcQ, linux-mtd-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, weiyongjun1-hv44wF8Li93QT0dZR+AlfA, yellowriver2010-PkbjNfxxIARBDgjK7y7TUQ, matthias.bgg-Re5JQEeQqe8AvxtiuMwx3w, jorge.ramirez-ortiz-QSEj5FYQhm4dnm+yROfE0A, rogercc.lin-NuS5LvNUpcJWk0Htik3J/w, dan.carpenter-QHcLZuEGTsvQT0dZR+AlfA, peterpandong-AL4WhLSQfzjQT0dZR+AlfA Hi Miquel, On Tue, 2019-05-07 at 12:06 +0200, Miquel Raynal wrote: > Hi Xiaolei, > > Xiaolei Li <xiaolei.li@mediatek.com> wrote on Tue, 7 May 2019 17:20:20 > +0800: > > > It is wanted to use MTK NAND driver with GPL-2.0 or MIT license. > > But now it is only licensed as GPL-2.0. > > So re-license it as dual MIT/GPL and replace license text with > > SPDX tag. > > > > Signed-off-by: Xiaolei Li <xiaolei.li@mediatek.com> > > Acked-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> > > Acked-by: Ryder Lee <ryder.lee@mediatek.com> > > Acked-by: Rafał Miłecki <rafal@milecki.pl> > > Acked-by: Miquel Raynal <miquel.raynal@bootlin.com> > > Acked-by: Boris Brezillon <boris.brezillon@collabora.com> > > Acked-by: RogerCC Lin <rogercc.lin@mediatek.com> > > --- > > When there is only one patch, no need to create a cover letter. You can > put the text which is in 0/1 below the three dashes '---'. > > Also no need to send a new version while there is nothing changed in > the code. Patchwork automatically collects tags. OKOK. Thanks. Xiaolei > > > Thanks, > Miquèl _______________________________________________ Linux-mediatek mailing list Linux-mediatek@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-mediatek ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [RFC PATCH v4 1/1] mtd: rawnand: mtk: Re-license MTK NAND driver as Dual MIT/GPL [not found] ` <20190507092020.1917-2-xiaolei.li-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org> 2019-05-07 10:06 ` Miquel Raynal @ 2019-05-07 10:48 ` Rafał Miłecki [not found] ` <3edbd5a4-4226-4cec-052a-81f7251817a1-g1n6cQUeyibVItvQsEIGlw@public.gmane.org> 2019-05-24 7:52 ` Arnd Bergmann 2 siblings, 1 reply; 15+ messages in thread From: Rafał Miłecki @ 2019-05-07 10:48 UTC (permalink / raw) To: Xiaolei Li, miquel.raynal-LDxbnhwyfcJBDgjK7y7TUQ, richard-/L3Ra7n9ekc, arnd-r2nGTMty4D4 Cc: daniel.thompson-QSEj5FYQhm4dnm+yROfE0A, ryder.lee-NuS5LvNUpcJWk0Htik3J/w, srv_heupstream-NuS5LvNUpcJWk0Htik3J/w, gustavo-L1vi/lXTdts+Va1GwOuvDg, yellowriver2010-PkbjNfxxIARBDgjK7y7TUQ, jorge.ramirez-ortiz-QSEj5FYQhm4dnm+yROfE0A, yamada.masahiro-uWyLwvC0a2jby3iVrkZq2A, boris.brezillon-ZGY8ohtN/8qB+jHODAdFcQ, linux-mtd-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, weiyongjun1-hv44wF8Li93QT0dZR+AlfA, yingjoe.chen-NuS5LvNUpcJWk0Htik3J/w, matthias.bgg-Re5JQEeQqe8AvxtiuMwx3w, linux-mediatek-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, rogercc.lin-NuS5LvNUpcJWk0Htik3J/w, dan.carpenter-QHcLZuEGTsvQT0dZR+AlfA, peterpandong-AL4WhLSQfzjQT0dZR+AlfA Arnd: would you send you Ack, just so we are 100% on a legal side? On 07.05.2019 11:20, Xiaolei Li wrote: > It is wanted to use MTK NAND driver with GPL-2.0 or MIT license. > But now it is only licensed as GPL-2.0. > So re-license it as dual MIT/GPL and replace license text with > SPDX tag. > > Signed-off-by: Xiaolei Li <xiaolei.li@mediatek.com> > Acked-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> > Acked-by: Ryder Lee <ryder.lee@mediatek.com> > Acked-by: Rafał Miłecki <rafal@milecki.pl> > Acked-by: Miquel Raynal <miquel.raynal@bootlin.com> > Acked-by: Boris Brezillon <boris.brezillon@collabora.com> > Acked-by: RogerCC Lin <rogercc.lin@mediatek.com> For mtk_nand.c we are missing acks from (co-)authors of following commits: 1) Wei: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=07f76443ef81e2b76bb6f7858ba183cd60357ada 2) Peter: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=d4092d76a4a4e57b65910899948a83cc8646c5a5 3) Masahiro: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f0dbe4aa35e73e4282d9446abb8900ab0636d483 All are absolutely trivial. For mtk_ecc.c are are missing acks from (co-)authors of following commits: 1) Wen: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=0119720a00b20074a51245427f05366ede2fa90a 2) Gustavo: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=238709b22097a16839078530e0a10812dde86f16 3) Arnd: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=8ff0513bdcdd71e84aa561cce216675d43fb41b8 The only /complex/ change is from Arnd. I'm not sure if that is copyrightable or not. # git log --follow drivers/mtd/nand/raw/mtk_nand.c | grep "Signed-off-by" | sort | uniq -c | sort -n -r 20 Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> 18 Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com> 15 Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com> 6 Signed-off-by: Xiaolei Li <xiaolei.li@mediatek.com> 3 Signed-off-by: RogerCC Lin <rogercc.lin@mediatek.com> 2 Signed-off-by: Miquel Raynal <miquel.raynal@free-electrons.com> 1 Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> 1 Signed-off-by: Ryder Lee <ryder.lee@mediatek.com> 1 Signed-off-by: Rafał Miłecki <rafal@milecki.pl> 1 Signed-off-by: Peter Pan <peterpandong@micron.com> 1 Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> 1 Signed-off-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> 1 Signed-off-by: Boris Brezillon <bbrezillon@kernel.org> * Boris (contributor of 34 changes) - Acked * Miquel (contributor of 22 changes) - Acked * Xiaolei (contributor of 6 changes) - Signed * RogerCC (contributor of 3 changes) - Acked * Rafał (contributor of 1 change) - Acked * Jorge (contributor of 1 change) - Acked * Ryder (contributor of 1 change) - Acked * Wei (contributor of 1 change): 07f76443ef81 ("mtd: nand: mediatek: remove redundant dev_err call in mtk_nfc_probe()") * Peter (contributor of 1 change): d4092d76a4a4 ("mtd: nand: Rename nand.h into rawnand.h") * Masahiro (contributor of 1 change): f0dbe4aa35e7 ("mtd: nand: mediatek: return error code of nand_scan_ident/tail() on error") # git log --follow drivers/mtd/nand/raw/mtk_ecc.c | grep "Signed-off-by" | sort | uniq -c | sort -n -r 13 Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com> 6 Signed-off-by: Xiaolei Li <xiaolei.li@mediatek.com> 3 Signed-off-by: RogerCC Lin <rogercc.lin@mediatek.com> 2 Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com> 1 Signed-off-by: Wen Yang <yellowriver2010@hotmail.com> 1 Signed-off-by: Ryder Lee <ryder.lee@mediatek.com> 1 Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> 1 Signed-off-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> 1 Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com> 1 Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> 1 Signed-off-by: Arnd Bergmann <arnd@arndb.de> * Boris (contributor of 15 changes) - Acked * Xiaolei (contributor of 6 changes) - Signed * RogerCC (contributor of 3 changes) - Acked * Ryder (contributor of 1 change) - Acked * Miquel (contributor of 1 change) - Acked * Jorge (contributor of 1 change) - Acked * Dan (contributor of 1 change) - Acked * Wen (contributor of 1 change): 0119720a00b2 ("mtd: rawnand: mtk: fix possible object reference leak") * Gustavo (contributor of 1 change): 238709b22097 ("mtd: nand: mtk: fix error return code in mtk_ecc_probe()") * Arnd (contributor of 1 change): 8ff0513bdcdd ("mtd: mtk: avoid warning in mtk_ecc_encode") # git log --follow drivers/mtd/nand/raw/mtk_ecc.h | grep "Signed-off-by" | sort | uniq -c | sort -n -r 3 Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com> 1 Signed-off-by: Xiaolei Li <xiaolei.li@mediatek.com> 1 Signed-off-by: RogerCC Lin <rogercc.lin@mediatek.com> 1 Signed-off-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> 1 Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com> * Boris (contributor of 4 changes) - Acked * Xiaolei (contributor of 1 change) - Signed * RogerCC (contributor of 1 change) - Acked * Jorge (contributor of 1 change) - Acked _______________________________________________ Linux-mediatek mailing list Linux-mediatek@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-mediatek ^ permalink raw reply [flat|nested] 15+ messages in thread
[parent not found: <3edbd5a4-4226-4cec-052a-81f7251817a1-g1n6cQUeyibVItvQsEIGlw@public.gmane.org>]
* Re: [RFC PATCH v4 1/1] mtd: rawnand: mtk: Re-license MTK NAND driver as Dual MIT/GPL [not found] ` <3edbd5a4-4226-4cec-052a-81f7251817a1-g1n6cQUeyibVItvQsEIGlw@public.gmane.org> @ 2019-05-17 1:42 ` xiaolei li 0 siblings, 0 replies; 15+ messages in thread From: xiaolei li @ 2019-05-17 1:42 UTC (permalink / raw) To: arnd-r2nGTMty4D4 Cc: daniel.thompson-QSEj5FYQhm4dnm+yROfE0A, ryder.lee-NuS5LvNUpcJWk0Htik3J/w, srv_heupstream-NuS5LvNUpcJWk0Htik3J/w, yamada.masahiro-uWyLwvC0a2jby3iVrkZq2A, richard-/L3Ra7n9ekc, miquel.raynal-LDxbnhwyfcJBDgjK7y7TUQ, gustavo-L1vi/lXTdts+Va1GwOuvDg, jorge.ramirez-ortiz-QSEj5FYQhm4dnm+yROfE0A, yingjoe.chen-NuS5LvNUpcJWk0Htik3J/w, boris.brezillon-ZGY8ohtN/8qB+jHODAdFcQ, linux-mtd-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, weiyongjun1-hv44wF8Li93QT0dZR+AlfA, yellowriver2010-PkbjNfxxIARBDgjK7y7TUQ, Rafał Miłecki, linux-mediatek-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, rogercc.lin-NuS5LvNUpcJWk0Htik3J/w, dan.carpenter-QHcLZuEGTsvQT0dZR+AlfA, matthias.bgg-Re5JQEeQqe8AvxtiuMwx3w Hi Arnd, You ever sent one patch to improve MTK NAND driver, commit 8ff0513bdcdd ("mtd: mtk: avoid warning in mtk_ecc_encode") Now we want to relicense MTK NAND driver as Dual MIT/GPL and wish to get your ACK. It will be helpful if you can send your ACK. Thanks, Xiaolei On Tue, 2019-05-07 at 12:48 +0200, Rafał Miłecki wrote: > Arnd: would you send you Ack, just so we are 100% on a legal side? > > > On 07.05.2019 11:20, Xiaolei Li wrote: > > It is wanted to use MTK NAND driver with GPL-2.0 or MIT license. > > But now it is only licensed as GPL-2.0. > > So re-license it as dual MIT/GPL and replace license text with > > SPDX tag. > > > > Signed-off-by: Xiaolei Li <xiaolei.li@mediatek.com> > > Acked-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> > > Acked-by: Ryder Lee <ryder.lee@mediatek.com> > > Acked-by: Rafał Miłecki <rafal@milecki.pl> > > Acked-by: Miquel Raynal <miquel.raynal@bootlin.com> > > Acked-by: Boris Brezillon <boris.brezillon@collabora.com> > > Acked-by: RogerCC Lin <rogercc.lin@mediatek.com> > > > For mtk_nand.c we are missing acks from (co-)authors of following commits: > 1) Wei: > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=07f76443ef81e2b76bb6f7858ba183cd60357ada > 2) Peter: > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=d4092d76a4a4e57b65910899948a83cc8646c5a5 > 3) Masahiro: > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f0dbe4aa35e73e4282d9446abb8900ab0636d483 > > All are absolutely trivial. > > > For mtk_ecc.c are are missing acks from (co-)authors of following commits: > 1) Wen: > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=0119720a00b20074a51245427f05366ede2fa90a > 2) Gustavo: > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=238709b22097a16839078530e0a10812dde86f16 > 3) Arnd: > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=8ff0513bdcdd71e84aa561cce216675d43fb41b8 > > The only /complex/ change is from Arnd. I'm not sure if that is > copyrightable or not. > > > > > # git log --follow drivers/mtd/nand/raw/mtk_nand.c | grep "Signed-off-by" | sort | uniq -c | sort -n -r > 20 Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> > 18 Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com> > 15 Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com> > 6 Signed-off-by: Xiaolei Li <xiaolei.li@mediatek.com> > 3 Signed-off-by: RogerCC Lin <rogercc.lin@mediatek.com> > 2 Signed-off-by: Miquel Raynal <miquel.raynal@free-electrons.com> > 1 Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> > 1 Signed-off-by: Ryder Lee <ryder.lee@mediatek.com> > 1 Signed-off-by: Rafał Miłecki <rafal@milecki.pl> > 1 Signed-off-by: Peter Pan <peterpandong@micron.com> > 1 Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> > 1 Signed-off-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> > 1 Signed-off-by: Boris Brezillon <bbrezillon@kernel.org> > > * Boris (contributor of 34 changes) - Acked > * Miquel (contributor of 22 changes) - Acked > * Xiaolei (contributor of 6 changes) - Signed > * RogerCC (contributor of 3 changes) - Acked > * Rafał (contributor of 1 change) - Acked > * Jorge (contributor of 1 change) - Acked > * Ryder (contributor of 1 change) - Acked > > * Wei (contributor of 1 change): > 07f76443ef81 ("mtd: nand: mediatek: remove redundant dev_err call in mtk_nfc_probe()") > > * Peter (contributor of 1 change): > d4092d76a4a4 ("mtd: nand: Rename nand.h into rawnand.h") > > * Masahiro (contributor of 1 change): > f0dbe4aa35e7 ("mtd: nand: mediatek: return error code of nand_scan_ident/tail() on error") > > > > > # git log --follow drivers/mtd/nand/raw/mtk_ecc.c | grep "Signed-off-by" | sort | uniq -c | sort -n -r > 13 Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com> > 6 Signed-off-by: Xiaolei Li <xiaolei.li@mediatek.com> > 3 Signed-off-by: RogerCC Lin <rogercc.lin@mediatek.com> > 2 Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com> > 1 Signed-off-by: Wen Yang <yellowriver2010@hotmail.com> > 1 Signed-off-by: Ryder Lee <ryder.lee@mediatek.com> > 1 Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> > 1 Signed-off-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> > 1 Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com> > 1 Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> > 1 Signed-off-by: Arnd Bergmann <arnd@arndb.de> > > * Boris (contributor of 15 changes) - Acked > * Xiaolei (contributor of 6 changes) - Signed > * RogerCC (contributor of 3 changes) - Acked > * Ryder (contributor of 1 change) - Acked > * Miquel (contributor of 1 change) - Acked > * Jorge (contributor of 1 change) - Acked > * Dan (contributor of 1 change) - Acked > > * Wen (contributor of 1 change): > 0119720a00b2 ("mtd: rawnand: mtk: fix possible object reference leak") > > * Gustavo (contributor of 1 change): > 238709b22097 ("mtd: nand: mtk: fix error return code in mtk_ecc_probe()") > > * Arnd (contributor of 1 change): > 8ff0513bdcdd ("mtd: mtk: avoid warning in mtk_ecc_encode") > > > > > # git log --follow drivers/mtd/nand/raw/mtk_ecc.h | grep "Signed-off-by" | sort | uniq -c | sort -n -r > 3 Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com> > 1 Signed-off-by: Xiaolei Li <xiaolei.li@mediatek.com> > 1 Signed-off-by: RogerCC Lin <rogercc.lin@mediatek.com> > 1 Signed-off-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> > 1 Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com> > > * Boris (contributor of 4 changes) - Acked > * Xiaolei (contributor of 1 change) - Signed > * RogerCC (contributor of 1 change) - Acked > * Jorge (contributor of 1 change) - Acked _______________________________________________ Linux-mediatek mailing list Linux-mediatek@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-mediatek ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [RFC PATCH v4 1/1] mtd: rawnand: mtk: Re-license MTK NAND driver as Dual MIT/GPL [not found] ` <20190507092020.1917-2-xiaolei.li-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org> 2019-05-07 10:06 ` Miquel Raynal 2019-05-07 10:48 ` Rafał Miłecki @ 2019-05-24 7:52 ` Arnd Bergmann 2019-05-24 7:55 ` Rafał Miłecki [not found] ` <CAK8P3a3d-2U=hpb0P0+W-eZ0cviwKVwy6dWvHbhBCgF4CJUWKA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2 siblings, 2 replies; 15+ messages in thread From: Arnd Bergmann @ 2019-05-24 7:52 UTC (permalink / raw) To: Xiaolei Li Cc: Daniel Thompson, Ryder Lee, srv_heupstream-NuS5LvNUpcJWk0Htik3J/w, Masahiro Yamada, Richard Weinberger, Miquel Raynal, Gustavo A. R. Silva, jorge.ramirez-ortiz-QSEj5FYQhm4dnm+yROfE0A, yingjoe.chen-NuS5LvNUpcJWk0Htik3J/w, boris.brezillon-ZGY8ohtN/8qB+jHODAdFcQ, linux-mtd, Wei Yongjun, yellowriver2010-PkbjNfxxIARBDgjK7y7TUQ, Rafał Miłecki, moderated list:ARM/Mediatek SoC..., peterpandong-AL4WhLSQfzjQT0dZR+AlfA, rogercc.lin-NuS5LvNUpcJWk0Htik3J/w, Dan Carpenter, Matthias Brugger On Tue, May 7, 2019 at 11:20 AM Xiaolei Li <xiaolei.li@mediatek.com> wrote: > > It is wanted to use MTK NAND driver with GPL-2.0 or MIT license. > But now it is only licensed as GPL-2.0. > So re-license it as dual MIT/GPL and replace license text with > SPDX tag. > > Signed-off-by: Xiaolei Li <xiaolei.li@mediatek.com> > Acked-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> > Acked-by: Ryder Lee <ryder.lee@mediatek.com> > Acked-by: Rafał Miłecki <rafal@milecki.pl> > Acked-by: Miquel Raynal <miquel.raynal@bootlin.com> > Acked-by: Boris Brezillon <boris.brezillon@collabora.com> > Acked-by: RogerCC Lin <rogercc.lin@mediatek.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Sorry for missing this earlier. _______________________________________________ Linux-mediatek mailing list Linux-mediatek@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-mediatek ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [RFC PATCH v4 1/1] mtd: rawnand: mtk: Re-license MTK NAND driver as Dual MIT/GPL 2019-05-24 7:52 ` Arnd Bergmann @ 2019-05-24 7:55 ` Rafał Miłecki [not found] ` <5052ea548ce89c1a588236d00319960b-g1n6cQUeyibVItvQsEIGlw@public.gmane.org> [not found] ` <CAK8P3a3d-2U=hpb0P0+W-eZ0cviwKVwy6dWvHbhBCgF4CJUWKA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 1 sibling, 1 reply; 15+ messages in thread From: Rafał Miłecki @ 2019-05-24 7:55 UTC (permalink / raw) To: Arnd Bergmann Cc: Daniel Thompson, Ryder Lee, srv_heupstream, Masahiro Yamada, Richard Weinberger, Miquel Raynal, Gustavo A. R. Silva, jorge.ramirez-ortiz, yingjoe.chen, boris.brezillon, linux-mtd, Wei Yongjun, yellowriver2010, Matthias Brugger, moderated list:ARM/Mediatek SoC..., Xiaolei Li, rogercc.lin, Dan Carpenter, peterpandong On 2019-05-24 09:52, Arnd Bergmann wrote: > On Tue, May 7, 2019 at 11:20 AM Xiaolei Li <xiaolei.li@mediatek.com> > wrote: >> >> It is wanted to use MTK NAND driver with GPL-2.0 or MIT license. >> But now it is only licensed as GPL-2.0. >> So re-license it as dual MIT/GPL and replace license text with >> SPDX tag. >> >> Signed-off-by: Xiaolei Li <xiaolei.li@mediatek.com> >> Acked-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> >> Acked-by: Ryder Lee <ryder.lee@mediatek.com> >> Acked-by: Rafał Miłecki <rafal@milecki.pl> >> Acked-by: Miquel Raynal <miquel.raynal@bootlin.com> >> Acked-by: Boris Brezillon <boris.brezillon@collabora.com> >> Acked-by: RogerCC Lin <rogercc.lin@mediatek.com> > > Acked-by: Arnd Bergmann <arnd@arndb.de> > > Sorry for missing this earlier. Thank you! Xiaolei: please resend this patch without RFC in a subject. I believe it can be applied/pushed now. ______________________________________________________ Linux MTD discussion mailing list http://lists.infradead.org/mailman/listinfo/linux-mtd/ ^ permalink raw reply [flat|nested] 15+ messages in thread
[parent not found: <5052ea548ce89c1a588236d00319960b-g1n6cQUeyibVItvQsEIGlw@public.gmane.org>]
* Re: [RFC PATCH v4 1/1] mtd: rawnand: mtk: Re-license MTK NAND driver as Dual MIT/GPL [not found] ` <5052ea548ce89c1a588236d00319960b-g1n6cQUeyibVItvQsEIGlw@public.gmane.org> @ 2019-05-24 8:18 ` xiaolei li 2019-06-18 9:36 ` Rafał Miłecki 0 siblings, 1 reply; 15+ messages in thread From: xiaolei li @ 2019-05-24 8:18 UTC (permalink / raw) To: Rafał Miłecki Cc: Daniel Thompson, Ryder Lee, srv_heupstream-NuS5LvNUpcJWk0Htik3J/w, Arnd Bergmann, Masahiro Yamada, Richard Weinberger, Miquel Raynal, Gustavo A. R. Silva, jorge.ramirez-ortiz-QSEj5FYQhm4dnm+yROfE0A, yingjoe.chen-NuS5LvNUpcJWk0Htik3J/w, boris.brezillon-ZGY8ohtN/8qB+jHODAdFcQ, linux-mtd, Wei Yongjun, yellowriver2010-PkbjNfxxIARBDgjK7y7TUQ, Matthias Brugger, moderated list:ARM/Mediatek SoC..., rogercc.lin-NuS5LvNUpcJWk0Htik3J/w, Dan Carpenter, peterpandong-AL4WhLSQfzjQT0dZR+AlfA Hi All, Thanks very much for your response! I will send a formal patch soon. Thanks, Xiaolei On Fri, 2019-05-24 at 09:55 +0200, Rafał Miłecki wrote: > On 2019-05-24 09:52, Arnd Bergmann wrote: > > On Tue, May 7, 2019 at 11:20 AM Xiaolei Li <xiaolei.li@mediatek.com> > > wrote: > >> > >> It is wanted to use MTK NAND driver with GPL-2.0 or MIT license. > >> But now it is only licensed as GPL-2.0. > >> So re-license it as dual MIT/GPL and replace license text with > >> SPDX tag. > >> > >> Signed-off-by: Xiaolei Li <xiaolei.li@mediatek.com> > >> Acked-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> > >> Acked-by: Ryder Lee <ryder.lee@mediatek.com> > >> Acked-by: Rafał Miłecki <rafal@milecki.pl> > >> Acked-by: Miquel Raynal <miquel.raynal@bootlin.com> > >> Acked-by: Boris Brezillon <boris.brezillon@collabora.com> > >> Acked-by: RogerCC Lin <rogercc.lin@mediatek.com> > > > > Acked-by: Arnd Bergmann <arnd@arndb.de> > > > > Sorry for missing this earlier. > > Thank you! > > Xiaolei: please resend this patch without RFC in a subject. I believe it > can be applied/pushed now. _______________________________________________ Linux-mediatek mailing list Linux-mediatek@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-mediatek ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [RFC PATCH v4 1/1] mtd: rawnand: mtk: Re-license MTK NAND driver as Dual MIT/GPL 2019-05-24 8:18 ` xiaolei li @ 2019-06-18 9:36 ` Rafał Miłecki [not found] ` <75974a2066425e5852d0295b22d2b259-g1n6cQUeyibVItvQsEIGlw@public.gmane.org> 0 siblings, 1 reply; 15+ messages in thread From: Rafał Miłecki @ 2019-06-18 9:36 UTC (permalink / raw) To: xiaolei li Cc: Daniel Thompson, Ryder Lee, srv_heupstream, Arnd Bergmann, Masahiro Yamada, Richard Weinberger, Miquel Raynal, Gustavo A. R. Silva, jorge.ramirez-ortiz, yingjoe.chen, boris.brezillon, linux-mtd, Wei Yongjun, yellowriver2010, Matthias Brugger, moderated list:ARM/Mediatek SoC..., rogercc.lin, Dan Carpenter, peterpandong On 2019-05-24 10:18, xiaolei li wrote: > On Fri, 2019-05-24 at 09:55 +0200, Rafał Miłecki wrote: >> On 2019-05-24 09:52, Arnd Bergmann wrote: >> > On Tue, May 7, 2019 at 11:20 AM Xiaolei Li <xiaolei.li@mediatek.com> >> > wrote: >> >> >> >> It is wanted to use MTK NAND driver with GPL-2.0 or MIT license. >> >> But now it is only licensed as GPL-2.0. >> >> So re-license it as dual MIT/GPL and replace license text with >> >> SPDX tag. >> >> >> >> Signed-off-by: Xiaolei Li <xiaolei.li@mediatek.com> >> >> Acked-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> >> >> Acked-by: Ryder Lee <ryder.lee@mediatek.com> >> >> Acked-by: Rafał Miłecki <rafal@milecki.pl> >> >> Acked-by: Miquel Raynal <miquel.raynal@bootlin.com> >> >> Acked-by: Boris Brezillon <boris.brezillon@collabora.com> >> >> Acked-by: RogerCC Lin <rogercc.lin@mediatek.com> >> > >> > Acked-by: Arnd Bergmann <arnd@arndb.de> >> > >> > Sorry for missing this earlier. >> >> Thank you! >> >> Xiaolei: please resend this patch without RFC in a subject. I believe >> it >> can be applied/pushed now. > > Thanks very much for your response! > I will send a formal patch soon. Hi Xiaolei, what's the status of this? It took some effort to sort that licensing out, I believe handling this sooner than later is highly recommended. ______________________________________________________ Linux MTD discussion mailing list http://lists.infradead.org/mailman/listinfo/linux-mtd/ ^ permalink raw reply [flat|nested] 15+ messages in thread
[parent not found: <75974a2066425e5852d0295b22d2b259-g1n6cQUeyibVItvQsEIGlw@public.gmane.org>]
* Re: [RFC PATCH v4 1/1] mtd: rawnand: mtk: Re-license MTK NAND driver as Dual MIT/GPL [not found] ` <75974a2066425e5852d0295b22d2b259-g1n6cQUeyibVItvQsEIGlw@public.gmane.org> @ 2019-06-19 9:32 ` xiaolei li 2019-06-19 10:49 ` Rafał Miłecki 0 siblings, 1 reply; 15+ messages in thread From: xiaolei li @ 2019-06-19 9:32 UTC (permalink / raw) To: Rafał Miłecki Cc: Daniel Thompson, Ryder Lee, srv_heupstream-NuS5LvNUpcJWk0Htik3J/w, Arnd Bergmann, Masahiro Yamada, Richard Weinberger, Miquel Raynal, Gustavo A. R. Silva, jorge.ramirez-ortiz-QSEj5FYQhm4dnm+yROfE0A, yingjoe.chen-NuS5LvNUpcJWk0Htik3J/w, boris.brezillon-ZGY8ohtN/8qB+jHODAdFcQ, linux-mtd, Wei Yongjun, yellowriver2010-PkbjNfxxIARBDgjK7y7TUQ, Matthias Brugger, moderated list:ARM/Mediatek SoC..., rogercc.lin-NuS5LvNUpcJWk0Htik3J/w, Dan Carpenter, peterpandong-AL4WhLSQfzjQT0dZR+AlfA Hi Rafal, On Tue, 2019-06-18 at 11:36 +0200, Rafał Miłecki wrote: > On 2019-05-24 10:18, xiaolei li wrote: > > On Fri, 2019-05-24 at 09:55 +0200, Rafał Miłecki wrote: > >> On 2019-05-24 09:52, Arnd Bergmann wrote: > >> > On Tue, May 7, 2019 at 11:20 AM Xiaolei Li <xiaolei.li@mediatek.com> > >> > wrote: > >> >> > >> >> It is wanted to use MTK NAND driver with GPL-2.0 or MIT license. > >> >> But now it is only licensed as GPL-2.0. > >> >> So re-license it as dual MIT/GPL and replace license text with > >> >> SPDX tag. > >> >> > >> >> Signed-off-by: Xiaolei Li <xiaolei.li@mediatek.com> > >> >> Acked-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> > >> >> Acked-by: Ryder Lee <ryder.lee@mediatek.com> > >> >> Acked-by: Rafał Miłecki <rafal@milecki.pl> > >> >> Acked-by: Miquel Raynal <miquel.raynal@bootlin.com> > >> >> Acked-by: Boris Brezillon <boris.brezillon@collabora.com> > >> >> Acked-by: RogerCC Lin <rogercc.lin@mediatek.com> > >> > > >> > Acked-by: Arnd Bergmann <arnd@arndb.de> > >> > > >> > Sorry for missing this earlier. > >> > >> Thank you! > >> > >> Xiaolei: please resend this patch without RFC in a subject. I believe > >> it > >> can be applied/pushed now. > > > > Thanks very much for your response! > > I will send a formal patch soon. > > Hi Xiaolei, what's the status of this? > > It took some effort to sort that licensing out, I believe handling this > sooner than later is highly recommended. Thanks for your attention. I sent the formal patch about two weeks ago. So, you didn't receive it, right ? Thanks, Xiaolei _______________________________________________ Linux-mediatek mailing list Linux-mediatek@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-mediatek ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [RFC PATCH v4 1/1] mtd: rawnand: mtk: Re-license MTK NAND driver as Dual MIT/GPL 2019-06-19 9:32 ` xiaolei li @ 2019-06-19 10:49 ` Rafał Miłecki 2019-06-20 1:14 ` xiaolei li 0 siblings, 1 reply; 15+ messages in thread From: Rafał Miłecki @ 2019-06-19 10:49 UTC (permalink / raw) To: xiaolei li Cc: Daniel Thompson, Ryder Lee, srv_heupstream-NuS5LvNUpcJWk0Htik3J/w, Arnd Bergmann, Masahiro Yamada, Richard Weinberger, Miquel Raynal, Gustavo A. R. Silva, jorge.ramirez-ortiz-QSEj5FYQhm4dnm+yROfE0A, yingjoe.chen-NuS5LvNUpcJWk0Htik3J/w, boris.brezillon-ZGY8ohtN/8qB+jHODAdFcQ, linux-mtd, Wei Yongjun, yellowriver2010-PkbjNfxxIARBDgjK7y7TUQ, Matthias Brugger, moderated list:ARM/Mediatek SoC..., rogercc.lin-NuS5LvNUpcJWk0Htik3J/w, Dan Carpenter, peterpandong-AL4WhLSQfzjQT0dZR+AlfA On 2019-06-19 11:32, xiaolei li wrote: > On Tue, 2019-06-18 at 11:36 +0200, Rafał Miłecki wrote: >> On 2019-05-24 10:18, xiaolei li wrote: >> > On Fri, 2019-05-24 at 09:55 +0200, Rafał Miłecki wrote: >> >> On 2019-05-24 09:52, Arnd Bergmann wrote: >> >> > On Tue, May 7, 2019 at 11:20 AM Xiaolei Li <xiaolei.li@mediatek.com> >> >> > wrote: >> >> >> >> >> >> It is wanted to use MTK NAND driver with GPL-2.0 or MIT license. >> >> >> But now it is only licensed as GPL-2.0. >> >> >> So re-license it as dual MIT/GPL and replace license text with >> >> >> SPDX tag. >> >> >> >> >> >> Signed-off-by: Xiaolei Li <xiaolei.li@mediatek.com> >> >> >> Acked-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> >> >> >> Acked-by: Ryder Lee <ryder.lee@mediatek.com> >> >> >> Acked-by: Rafał Miłecki <rafal@milecki.pl> >> >> >> Acked-by: Miquel Raynal <miquel.raynal@bootlin.com> >> >> >> Acked-by: Boris Brezillon <boris.brezillon@collabora.com> >> >> >> Acked-by: RogerCC Lin <rogercc.lin@mediatek.com> >> >> > >> >> > Acked-by: Arnd Bergmann <arnd@arndb.de> >> >> > >> >> > Sorry for missing this earlier. >> >> >> >> Thank you! >> >> >> >> Xiaolei: please resend this patch without RFC in a subject. I believe >> >> it >> >> can be applied/pushed now. >> > >> > Thanks very much for your response! >> > I will send a formal patch soon. >> >> Hi Xiaolei, what's the status of this? >> >> It took some effort to sort that licensing out, I believe handling >> this >> sooner than later is highly recommended. > > Thanks for your attention. > I sent the formal patch about two weeks ago. So, you didn't receive it, > right ? It has never reached me or mailing list. See: http://lists.infradead.org/pipermail/linux-mtd/2019-June/thread.html https://patchwork.ozlabs.org/project/linux-mtd/list/?series=&submitter=71599&state=*&q=&archive=&delegate= The latest one is RFC v4. _______________________________________________ Linux-mediatek mailing list Linux-mediatek@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-mediatek ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [RFC PATCH v4 1/1] mtd: rawnand: mtk: Re-license MTK NAND driver as Dual MIT/GPL 2019-06-19 10:49 ` Rafał Miłecki @ 2019-06-20 1:14 ` xiaolei li 0 siblings, 0 replies; 15+ messages in thread From: xiaolei li @ 2019-06-20 1:14 UTC (permalink / raw) To: Rafał Miłecki Cc: Daniel Thompson, Ryder Lee, srv_heupstream, Arnd Bergmann, Masahiro Yamada, Richard Weinberger, Miquel Raynal, Gustavo A. R. Silva, jorge.ramirez-ortiz, yingjoe.chen, boris.brezillon, linux-mtd, Wei Yongjun, yellowriver2010, Matthias Brugger, moderated list:ARM/Mediatek SoC..., rogercc.lin, Dan Carpenter, peterpandong On Wed, 2019-06-19 at 12:49 +0200, Rafał Miłecki wrote: > On 2019-06-19 11:32, xiaolei li wrote: > > On Tue, 2019-06-18 at 11:36 +0200, Rafał Miłecki wrote: > >> On 2019-05-24 10:18, xiaolei li wrote: > >> > On Fri, 2019-05-24 at 09:55 +0200, Rafał Miłecki wrote: > >> >> On 2019-05-24 09:52, Arnd Bergmann wrote: > >> >> > On Tue, May 7, 2019 at 11:20 AM Xiaolei Li <xiaolei.li@mediatek.com> > >> >> > wrote: > >> >> >> > >> >> >> It is wanted to use MTK NAND driver with GPL-2.0 or MIT license. > >> >> >> But now it is only licensed as GPL-2.0. > >> >> >> So re-license it as dual MIT/GPL and replace license text with > >> >> >> SPDX tag. > >> >> >> > >> >> >> Signed-off-by: Xiaolei Li <xiaolei.li@mediatek.com> > >> >> >> Acked-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> > >> >> >> Acked-by: Ryder Lee <ryder.lee@mediatek.com> > >> >> >> Acked-by: Rafał Miłecki <rafal@milecki.pl> > >> >> >> Acked-by: Miquel Raynal <miquel.raynal@bootlin.com> > >> >> >> Acked-by: Boris Brezillon <boris.brezillon@collabora.com> > >> >> >> Acked-by: RogerCC Lin <rogercc.lin@mediatek.com> > >> >> > > >> >> > Acked-by: Arnd Bergmann <arnd@arndb.de> > >> >> > > >> >> > Sorry for missing this earlier. > >> >> > >> >> Thank you! > >> >> > >> >> Xiaolei: please resend this patch without RFC in a subject. I believe > >> >> it > >> >> can be applied/pushed now. > >> > > >> > Thanks very much for your response! > >> > I will send a formal patch soon. > >> > >> Hi Xiaolei, what's the status of this? > >> > >> It took some effort to sort that licensing out, I believe handling > >> this > >> sooner than later is highly recommended. > > > > Thanks for your attention. > > I sent the formal patch about two weeks ago. So, you didn't receive it, > > right ? > > It has never reached me or mailing list. OK. I will re-send it today. Thanks. > > See: > http://lists.infradead.org/pipermail/linux-mtd/2019-June/thread.html > https://patchwork.ozlabs.org/project/linux-mtd/list/?series=&submitter=71599&state=*&q=&archive=&delegate= > > The latest one is RFC v4. ______________________________________________________ Linux MTD discussion mailing list http://lists.infradead.org/mailman/listinfo/linux-mtd/ ^ permalink raw reply [flat|nested] 15+ messages in thread
[parent not found: <CAK8P3a3d-2U=hpb0P0+W-eZ0cviwKVwy6dWvHbhBCgF4CJUWKA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: [RFC PATCH v4 1/1] mtd: rawnand: mtk: Re-license MTK NAND driver as Dual MIT/GPL [not found] ` <CAK8P3a3d-2U=hpb0P0+W-eZ0cviwKVwy6dWvHbhBCgF4CJUWKA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2019-05-24 7:56 ` Masahiro Yamada 0 siblings, 0 replies; 15+ messages in thread From: Masahiro Yamada @ 2019-05-24 7:56 UTC (permalink / raw) To: Arnd Bergmann Cc: Daniel Thompson, Ryder Lee, srv_heupstream-NuS5LvNUpcJWk0Htik3J/w, Gustavo A. R. Silva, Richard Weinberger, Wen Yang, moderated list:ARM/Mediatek SoC..., Yingjoe Chen, Boris Brezillon, linux-mtd, Matthias Brugger, Wei Yongjun, Miquel Raynal, Rafał Miłecki, Jorge Ramirez Ortiz, Xiaolei Li, rogercc.lin-NuS5LvNUpcJWk0Htik3J/w, Dan Carpenter, peterpandong-AL4WhLSQfzjQT0dZR+AlfA On Fri, May 24, 2019 at 4:53 PM Arnd Bergmann <arnd@arndb.de> wrote: > > On Tue, May 7, 2019 at 11:20 AM Xiaolei Li <xiaolei.li@mediatek.com> wrote: > > > > It is wanted to use MTK NAND driver with GPL-2.0 or MIT license. > > But now it is only licensed as GPL-2.0. > > So re-license it as dual MIT/GPL and replace license text with > > SPDX tag. > > > > Signed-off-by: Xiaolei Li <xiaolei.li@mediatek.com> > > Acked-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> > > Acked-by: Ryder Lee <ryder.lee@mediatek.com> > > Acked-by: Rafał Miłecki <rafal@milecki.pl> > > Acked-by: Miquel Raynal <miquel.raynal@bootlin.com> > > Acked-by: Boris Brezillon <boris.brezillon@collabora.com> > > Acked-by: RogerCC Lin <rogercc.lin@mediatek.com> > > Acked-by: Arnd Bergmann <arnd@arndb.de> > > Sorry for missing this earlier. > > ______________________________________________________ > Linux MTD discussion mailing list > http://lists.infradead.org/mailman/listinfo/linux-mtd/ I found my tiny contribution for mtd_nand.c (f0dbe4aa35e73). Anyway, I do not mind this. Acked-by: Masahiro Yamada <yamada.masahiro@socionext.com> -- Best Regards Masahiro Yamada _______________________________________________ Linux-mediatek mailing list Linux-mediatek@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-mediatek ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [RFC PATCH v4 0/1] Re-license MTK NAND driver 2019-05-07 9:20 [RFC PATCH v4 0/1] Re-license MTK NAND driver Xiaolei Li 2019-05-07 9:20 ` [RFC PATCH v4 1/1] mtd: rawnand: mtk: Re-license MTK NAND driver as Dual MIT/GPL Xiaolei Li @ 2019-05-07 9:40 ` Dan Carpenter 1 sibling, 0 replies; 15+ messages in thread From: Dan Carpenter @ 2019-05-07 9:40 UTC (permalink / raw) To: Xiaolei Li Cc: daniel.thompson, ryder.lee, arnd, srv_heupstream, yamada.masahiro, richard, miquel.raynal, gustavo, jorge.ramirez-ortiz, yingjoe.chen, boris.brezillon, linux-mtd, weiyongjun1, yellowriver2010, rafal, linux-mediatek, peterpandong, rogercc.lin, matthias.bgg Fine by me. Acked-by: Dan Carpenter <dan.carpenter@oracle.com> regards, dan carpenter ______________________________________________________ Linux MTD discussion mailing list http://lists.infradead.org/mailman/listinfo/linux-mtd/ ^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2019-06-20 1:14 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-05-07 9:20 [RFC PATCH v4 0/1] Re-license MTK NAND driver Xiaolei Li
2019-05-07 9:20 ` [RFC PATCH v4 1/1] mtd: rawnand: mtk: Re-license MTK NAND driver as Dual MIT/GPL Xiaolei Li
[not found] ` <20190507092020.1917-2-xiaolei.li-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org>
2019-05-07 10:06 ` Miquel Raynal
2019-05-07 10:18 ` xiaolei li
2019-05-07 10:48 ` Rafał Miłecki
[not found] ` <3edbd5a4-4226-4cec-052a-81f7251817a1-g1n6cQUeyibVItvQsEIGlw@public.gmane.org>
2019-05-17 1:42 ` xiaolei li
2019-05-24 7:52 ` Arnd Bergmann
2019-05-24 7:55 ` Rafał Miłecki
[not found] ` <5052ea548ce89c1a588236d00319960b-g1n6cQUeyibVItvQsEIGlw@public.gmane.org>
2019-05-24 8:18 ` xiaolei li
2019-06-18 9:36 ` Rafał Miłecki
[not found] ` <75974a2066425e5852d0295b22d2b259-g1n6cQUeyibVItvQsEIGlw@public.gmane.org>
2019-06-19 9:32 ` xiaolei li
2019-06-19 10:49 ` Rafał Miłecki
2019-06-20 1:14 ` xiaolei li
[not found] ` <CAK8P3a3d-2U=hpb0P0+W-eZ0cviwKVwy6dWvHbhBCgF4CJUWKA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2019-05-24 7:56 ` Masahiro Yamada
2019-05-07 9:40 ` [RFC PATCH v4 0/1] Re-license MTK NAND driver Dan Carpenter
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox