From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 60788C4363D for ; Thu, 24 Sep 2020 15:37:02 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 1F0CB2311A for ; Thu, 24 Sep 2020 15:37:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1600961822; bh=/cGqNUHp0D6orsIJY1ALWDj9FM1YLGdTBkqKwjo4014=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=N2NQMZ5NLIqW3uNDuQdQjApZg37kdsfGCnfV19Ub85r8xl+HM9gHOirpyuG7qwbxd iAWalAjSNM4RZQqzQ9WKwIGFdsUAFmo5eNc47sRZE5V+INxnDufJcW/o8c89/+YL5J HXpK0ozjsBfu2yYtE9QLm1YjFZqHBTpe43QFLuKI= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728494AbgIXPhB (ORCPT ); Thu, 24 Sep 2020 11:37:01 -0400 Received: from mail.kernel.org ([198.145.29.99]:54122 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728352AbgIXPhA (ORCPT ); Thu, 24 Sep 2020 11:37:00 -0400 Received: from localhost (83-86-74-64.cable.dynamic.v4.ziggo.nl [83.86.74.64]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id C221622208; Thu, 24 Sep 2020 15:36:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1600961820; bh=/cGqNUHp0D6orsIJY1ALWDj9FM1YLGdTBkqKwjo4014=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=yYeD9mddBetQ/EVaHClCOdTJDgj2r57fhsPcJbBKWlwoLYWn0iwsYROhtfFBOBhrw +Om5sZMPJkm3mKC7+Sivo3gxvaOLNKc3uZmXlmvK6Zhu7552brXh0VrBk+3jPUCbyo eWXEbOg8wFjfZel6YWESiHwP0vuzt/ZQCn3jjZn4= Date: Thu, 24 Sep 2020 17:37:16 +0200 From: Greg Kroah-Hartman To: Srinivasan Raju Cc: mostafa.afgani@purelifi.com, pureLiFi Ltd , Mauro Carvalho Chehab , "David S. Miller" , Rob Herring , open list , "open list:STAGING SUBSYSTEM" Subject: Re: [PATCH] staging: Initial driver submission for pureLiFi devices Message-ID: <20200924153716.GB1171035@kroah.com> References: <20200924151910.21693-1-srini.raju@purelifi.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200924151910.21693-1-srini.raju@purelifi.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Sep 24, 2020 at 08:48:51PM +0530, Srinivasan Raju wrote: > +++ b/drivers/staging/purelifi/chip.c > @@ -0,0 +1,184 @@ > +// SPDX-License-Identifier: GNU General Public License v2.0 or later That's not a valid SPDX identifier :) > +/* Copyright (c) 2015-2020 pureLiFi Ltd > + * All rights reserved. > + * > + * Copyright (C) 2015-2020 pureLiFi > + * Copyright (C) 2006-2007 Daniel Drake > + * Copyright (C) 2005-2007 Ulrich Kunitz > + * > + * This program is free software; you can redistribute it and/or modify > + * it under the terms of the GNU General Public License as published by > + * the Free Software Foundation; either version 2 of the License, or > + * (at your option) any later version. > + * > + * 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. These paragraphs are not needed with a SPDX line above. thanks, greg k-h