From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754096AbbCIJvA (ORCPT ); Mon, 9 Mar 2015 05:51:00 -0400 Received: from comal.ext.ti.com ([198.47.26.152]:55512 "EHLO comal.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753387AbbCIJu7 (ORCPT ); Mon, 9 Mar 2015 05:50:59 -0400 Message-ID: <54FD6CFE.7040609@ti.com> Date: Mon, 9 Mar 2015 11:50:54 +0200 From: Roger Quadros User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: Axel Lin , Kishon Vijay Abraham I CC: Vignesh R , Felipe Balbi , "linux-kernel@vger.kernel.org" Subject: Re: [PATCH] phy: ti/omap: Fix modalias References: <1425657681.10392.1.camel@phoenix> In-Reply-To: <1425657681.10392.1.camel@phoenix> Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 06/03/15 18:01, Axel Lin wrote: > Remove extra space in MODULE_ALIAS. > > Signed-off-by: Axel Lin good catch! Acked-by: Roger Quadros cheers, -roger > --- > drivers/phy/phy-omap-control.c | 2 +- > drivers/phy/phy-omap-usb2.c | 2 +- > drivers/phy/phy-ti-pipe3.c | 2 +- > 3 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/phy/phy-omap-control.c b/drivers/phy/phy-omap-control.c > index efe724f..93252e0 100644 > --- a/drivers/phy/phy-omap-control.c > +++ b/drivers/phy/phy-omap-control.c > @@ -360,7 +360,7 @@ static void __exit omap_control_phy_exit(void) > } > module_exit(omap_control_phy_exit); > > -MODULE_ALIAS("platform: omap_control_phy"); > +MODULE_ALIAS("platform:omap_control_phy"); > MODULE_AUTHOR("Texas Instruments Inc."); > MODULE_DESCRIPTION("OMAP Control Module PHY Driver"); > MODULE_LICENSE("GPL v2"); > diff --git a/drivers/phy/phy-omap-usb2.c b/drivers/phy/phy-omap-usb2.c > index 6f4aef3..c4917b2 100644 > --- a/drivers/phy/phy-omap-usb2.c > +++ b/drivers/phy/phy-omap-usb2.c > @@ -383,7 +383,7 @@ static struct platform_driver omap_usb2_driver = { > > module_platform_driver(omap_usb2_driver); > > -MODULE_ALIAS("platform: omap_usb2"); > +MODULE_ALIAS("platform:omap_usb2"); > MODULE_AUTHOR("Texas Instruments Inc."); > MODULE_DESCRIPTION("OMAP USB2 phy driver"); > MODULE_LICENSE("GPL v2"); > diff --git a/drivers/phy/phy-ti-pipe3.c b/drivers/phy/phy-ti-pipe3.c > index 95c88f9..242e06b 100644 > --- a/drivers/phy/phy-ti-pipe3.c > +++ b/drivers/phy/phy-ti-pipe3.c > @@ -608,7 +608,7 @@ static struct platform_driver ti_pipe3_driver = { > > module_platform_driver(ti_pipe3_driver); > > -MODULE_ALIAS("platform: ti_pipe3"); > +MODULE_ALIAS("platform:ti_pipe3"); > MODULE_AUTHOR("Texas Instruments Inc."); > MODULE_DESCRIPTION("TI PIPE3 phy driver"); > MODULE_LICENSE("GPL v2"); >