Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755858AbdLVNlZ (ORCPT ); Fri, 22 Dec 2017 08:41:25 -0500 Received: from mail-wm0-f68.google.com ([74.125.82.68]:35060 "EHLO mail-wm0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752594AbdLVNlT (ORCPT ); Fri, 22 Dec 2017 08:41:19 -0500 X-Google-Smtp-Source: ACJfBotCjEeGW4wFYTOj5C7tudQrTH/UbPkgerZs2hxwGqTf46fILpF5+RqjR6+kBImVEMiKFNupiJGFP2oLKS5Zo0M= MIME-Version: 1.0 In-Reply-To: <20171222102156.cfemen6ouxxxbrem@plaes.org> References: <1513936020-35569-1-git-send-email-yong.deng@magewell.com> <20171222102156.cfemen6ouxxxbrem@plaes.org> From: Philippe Ombredanne Date: Fri, 22 Dec 2017 14:40:37 +0100 Message-ID: Subject: Re: [linux-sunxi] [PATCH v4 2/2] media: V3s: Add support for Allwinner CSI. To: Yong Deng Cc: Maxime Ripard , Mauro Carvalho Chehab , Rob Herring , Mark Rutland , Chen-Yu Tsai , "David S. Miller" , Greg Kroah-Hartman , Randy Dunlap , Hans Verkuil , Stanimir Varbanov , Hugues Fruchet , Yannick Fertre , Philipp Zabel , Arnd Bergmann , Benjamin Gaignard , Ramesh Shanmugasundaram , Sakari Ailus , Rick Chang , Linux Media Mailing List , "open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS" , "moderated list:ARM/FREESCALE IMX / MXC ARM ARCHITECTURE" , LKML , linux-sunxi@googlegroups.com, Priit Laes Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1714 Lines: 51 Yong, On Fri, Dec 22, 2017 at 11:21 AM, Priit Laes wrote: > On Fri, Dec 22, 2017 at 05:47:00PM +0800, Yong Deng wrote: >> Allwinner V3s SoC have two CSI module. CSI0 is used for MIPI interface >> and CSI1 is used for parallel interface. This is not documented in >> datasheet but by testing and guess. >> >> This patch implement a v4l2 framework driver for it. >> >> Currently, the driver only support the parallel interface. MIPI-CSI2, >> ISP's support are not included in this patch. >> >> Signed-off-by: Yong Deng >> --- /dev/null >> +++ b/drivers/media/platform/sunxi/sun6i-csi/sun6i_csi.c >> @@ -0,0 +1,878 @@ >> +/* >> + * Copyright (c) 2017 Magewell Electronics Co., Ltd. (Nanjing). >> + * All rights reserved. >> + * Author: Yong Deng >> + * >> + * 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. >> + */ Would you mind using the new SPDX tags documented in Thomas patch set [1] rather than this fine but longer legalese? >> +MODULE_LICENSE("GPL v2"); Per module.h this means GPL2 only. This is not matching your top license above which is GPL2 or later. Please make sure your MODULE_LICENSE is consistent with the top level license. [1] https://lkml.org/lkml/2017/12/4/934 -- Cordially Philippe Ombredanne