Received: by 10.213.65.68 with SMTP id h4csp682902imn; Fri, 6 Apr 2018 07:15:14 -0700 (PDT) X-Google-Smtp-Source: AIpwx4+XDqvXjMTvUVb/3pJsO9MQ6yZiuudXefiUS3x5WpztDq2nbSn4SGlWEf/7qD7Nx4nakZFt X-Received: by 2002:a17:902:be12:: with SMTP id r18-v6mr25274230pls.173.1523024114816; Fri, 06 Apr 2018 07:15:14 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1523024114; cv=none; d=google.com; s=arc-20160816; b=hNcf6+yHwnEkvmUU6N1StUqJMjV77dVRUfNG4wcEo/wtPB/RfsJJRt+2aEgyXQZpfp xjHdzO644gYwZdjJ56mRKkxfwJElrTerUOK/FNiDaq9qAeIektA4oRoaaeF6ajwFo7UI qsiG8HbrYno3YVNSt0Dz/avRLHLa2CHzaXQR/zRZvHEbWcVEbffKzQS+alCPwtRY+vaf zEGYd0jgKIPc7xy10eXcmt/STJ74+BjpF3TYZFN06wd45zaMMdb3+AnZjpK2f6FWw46z kZkPYwdJDcgyF/+rmOnkOrGO+QOt2CbD/JxPlr8k4SovpBxB7EeeL8Adx9ZNmIxNZCK+ wHqg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=YHvNSNGXCF04ndhE5RcQ19LWxyj8Y5QDBefptQDXXV4=; b=o6lwIP8QZZuSv63TNr6OMq5M48l7gS8eQATg9HzUwnly/3CLVUJGi2BnEte8Eo5lAp ZyKVeoOoT7pAkB4XRsOqmGiGb8puLsDLX7QCAlTTIRfm7n9WwlO+0Y/djoNPt0S5Mzk6 G63WrTaA7bh8M2V4UTjoiPDyulkDBcN9N8z2RsdAhye3m5KVgQTOEEpO13zqNGaw1BsL 6L4L6V51SACCquqv7pgfRp2J9ghjgQhO7Fimjcg/myrVmhh5rezKyxy3IgJA+NbbP5l9 LEpGfbN4JOodvdf5GaptePGpFvi01GNnsyCVXpGpnEd/MZP844D7QDbpZhOAqu30TNPD 5P+w== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id d9si7213692pga.776.2018.04.06.07.15.00; Fri, 06 Apr 2018 07:15:14 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932663AbeDFNjd (ORCPT + 99 others); Fri, 6 Apr 2018 09:39:33 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:34710 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932608AbeDFNjb (ORCPT ); Fri, 6 Apr 2018 09:39:31 -0400 Received: from localhost (LFbn-1-12247-202.w90-92.abo.wanadoo.fr [90.92.61.202]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 96234D0A; Fri, 6 Apr 2018 13:39:28 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Arnd Bergmann , Bjorn Andersson , Kishon Vijay Abraham I Subject: [PATCH 4.14 34/67] phy: qcom-ufs: add MODULE_LICENSE tag Date: Fri, 6 Apr 2018 15:24:04 +0200 Message-Id: <20180406084345.846193640@linuxfoundation.org> X-Mailer: git-send-email 2.17.0 In-Reply-To: <20180406084341.225558262@linuxfoundation.org> References: <20180406084341.225558262@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.14-stable review patch. If anyone has any objections, please let me know. ------------------ From: Arnd Bergmann commit 59fba0869acae06ff594dd7e9808ed673f53538a upstream. While the specific UFS PHY drivers (14nm and 20nm) have a module license, the common base module does not, leading to a Kbuild failure: WARNING: modpost: missing MODULE_LICENSE() in drivers/phy/qualcomm/phy-qcom-ufs.o FATAL: modpost: GPL-incompatible module phy-qcom-ufs.ko uses GPL-only symbol 'clk_enable' This adds a module description and license tag to fix the build. I added both Yaniv and Vivek as authors here, as Yaniv sent the initial submission, while Vivek did most of the work since. Signed-off-by: Arnd Bergmann Acked-by: Bjorn Andersson Signed-off-by: Kishon Vijay Abraham I Signed-off-by: Greg Kroah-Hartman --- drivers/phy/qualcomm/phy-qcom-ufs.c | 5 +++++ 1 file changed, 5 insertions(+) --- a/drivers/phy/qualcomm/phy-qcom-ufs.c +++ b/drivers/phy/qualcomm/phy-qcom-ufs.c @@ -689,3 +689,8 @@ int ufs_qcom_phy_power_off(struct phy *g return 0; } EXPORT_SYMBOL_GPL(ufs_qcom_phy_power_off); + +MODULE_AUTHOR("Yaniv Gardi "); +MODULE_AUTHOR("Vivek Gautam "); +MODULE_DESCRIPTION("Universal Flash Storage (UFS) QCOM PHY"); +MODULE_LICENSE("GPL v2");