From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752205AbbJORh3 (ORCPT ); Thu, 15 Oct 2015 13:37:29 -0400 Received: from mail-gw1-out.broadcom.com ([216.31.210.62]:6857 "EHLO mail-gw1-out.broadcom.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751086AbbJORhY (ORCPT ); Thu, 15 Oct 2015 13:37:24 -0400 X-IronPort-AV: E=Sophos;i="5.17,686,1437462000"; d="scan'208";a="77815758" From: Arun Parameswaran To: Florian Fainelli , "David S . Miller" CC: , , , , Arun Parameswaran Subject: [PATCH v2 1/1] net: phy: bcm-phy-lib: Fix module license issue Date: Thu, 15 Oct 2015 10:37:13 -0700 Message-ID: <1444930633-23314-2-git-send-email-arunp@broadcom.com> X-Mailer: git-send-email 2.6.1 In-Reply-To: <1444930633-23314-1-git-send-email-arunp@broadcom.com> References: <1444930633-23314-1-git-send-email-arunp@broadcom.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The 'bcm-phy-lib.c', added as a part of the commit "net: phy: Add Broadcom phy library for common interfaces" was missing the module license. This was causing an issue when the library is built as a module; "module license 'unspecified' taints kernel". This patch fixes the issue by adding the module license, author and description to the bcm-phy-lib.c file. Fixes: a1cba5613edf5 ("net: phy: Add Broadcom phy library for common interfaces") Signed-off-by: Arun Parameswaran --- drivers/net/phy/bcm-phy-lib.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/drivers/net/phy/bcm-phy-lib.c b/drivers/net/phy/bcm-phy-lib.c index dd79ea6..ddb377e 100644 --- a/drivers/net/phy/bcm-phy-lib.c +++ b/drivers/net/phy/bcm-phy-lib.c @@ -15,6 +15,7 @@ #include #include #include +#include #include #define MII_BCM_CHANNEL_WIDTH 0x2000 @@ -206,3 +207,7 @@ int bcm_phy_enable_eee(struct phy_device *phydev) return 0; } EXPORT_SYMBOL_GPL(bcm_phy_enable_eee); + +MODULE_DESCRIPTION("Broadcom PHY Library"); +MODULE_LICENSE("GPL v2"); +MODULE_AUTHOR("Broadcom Corporation"); -- 2.6.1