From patchwork Sat Mar 15 09:37:12 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnd Bergmann X-Patchwork-Id: 3836671 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 52102BF540 for ; Sat, 15 Mar 2014 09:37:59 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 4A9EB20340 for ; Sat, 15 Mar 2014 09:37:58 +0000 (UTC) Received: from casper.infradead.org (casper.infradead.org [85.118.1.10]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 1380320295 for ; Sat, 15 Mar 2014 09:37:57 +0000 (UTC) Received: from merlin.infradead.org ([2001:4978:20e::2]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1WOl2O-00019c-Pe; Sat, 15 Mar 2014 09:37:52 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1WOl2M-0002Nj-8i; Sat, 15 Mar 2014 09:37:50 +0000 Received: from moutng.kundenserver.de ([212.227.17.10]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1WOl2J-0002Me-1E for linux-arm-kernel@lists.infradead.org; Sat, 15 Mar 2014 09:37:48 +0000 Received: from klappe2.localnet (HSI-KBW-134-3-135-108.hsi14.kabel-badenwuerttemberg.de [134.3.135.108]) by mrelayeu.kundenserver.de (node=mreue102) with ESMTP (Nemesis) id 0MOjCA-1WSaFe2ehS-0067q3; Sat, 15 Mar 2014 10:37:16 +0100 From: Arnd Bergmann To: Kishon Vijay Abraham I Subject: [PATCH] PHY: Exynos: fix SATA phy license typo Date: Sat, 15 Mar 2014 10:37:12 +0100 User-Agent: KMail/1.12.2 (Linux/3.8.0-22-generic; KDE/4.3.2; x86_64; ; ) MIME-Version: 1.0 Message-Id: <201403151037.12694.arnd@arndb.de> X-Provags-ID: V02:K0:sEtyZYlF/MyuELCA7F+iWFrW+SRQpCAIAbb7Z7ToDl3 ecxOBGthyxy+zFLOlRGyWa2PGqHqYWbCtCGRPniZjcCKSaqWzs DPR4n6bysgIC5baRhvz/6obo3k4LaR3wr2Onu4YbnQoD/fJUxG pbg7xx9C3uPN66iJX9Oy5+ymIUllxxmJKpLuPRUIrM50iLj9/k RiItYmGomoRU9WzPUU9C2i0Kx4Uq/RIo+psm5GdVaSDXHyOdPD o/wZknaX/mFkDFHapyN3i2QddYlJJkBNzV3lw0Yc4Dhep/CQXL vJN5BIUrQGn6VwD07nuc+F3Z9Yr72eoIFb8K2t9a3vF/kgnXZ+ VfaiTzxtxCzftTQC5p+2TA9xgpTTGGJMcPF4WMXQL X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20140315_053747_293382_27E9609C X-CRM114-Status: UNSURE ( 6.53 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -1.9 (-) Cc: Yuvaraj Kumar C D , Girish K S , Vasanth Ananthan , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP If the license string doesn't match exactly, the module refuses to load. Signed-off-by: Arnd Bergmann diff --git a/drivers/phy/phy-exynos5250-sata.c b/drivers/phy/phy-exynos5250-sata.c index c9361b7..0568945 100644 --- a/drivers/phy/phy-exynos5250-sata.c +++ b/drivers/phy/phy-exynos5250-sata.c @@ -246,6 +246,6 @@ static struct platform_driver exynos_sata_phy_driver = { module_platform_driver(exynos_sata_phy_driver); MODULE_DESCRIPTION("Samsung SerDes PHY driver"); -MODULE_LICENSE("GPL V2"); +MODULE_LICENSE("GPL v2"); MODULE_AUTHOR("Girish K S "); MODULE_AUTHOR("Yuvaraj C D ");